Skip to content

Commit 459a7bc

Browse files
committed
Initial commit
0 parents  commit 459a7bc

File tree

71 files changed

+7433
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+7433
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

CityDetailViewController.h

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
//
2+
// CityDetailViewController.h
3+
// WeatherBasedMusic
4+
//
5+
// Created by pavan krishnamurthy on 5/19/12.
6+
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
#import "Rdio/Rdio.h"
11+
12+
@interface CityDetailViewController : UITableViewController<RdioDelegate,RDPlayerDelegate>
13+
{
14+
BOOL playing;
15+
BOOL loggedIn;
16+
double hotness;
17+
}
18+
- (IBAction)PlayButtonClicked:(id)sender;
19+
@property(nonatomic,strong) NSMutableArray *artistsongarray;
20+
@property (retain) RDPlayer *player;
21+
@property(nonatomic,strong)NSOperationQueue *queue;
22+
@property (weak, nonatomic) IBOutlet UITableView *SongTable;
23+
@property(nonatomic,strong)NSMutableDictionary *songartistdict;
24+
@property(nonatomic,strong)NSMutableDictionary *playlists;
25+
-(RDPlayer*)getPlayer;
26+
-(void)loadSongMetadata:(NSString *)songString atindex:(int)index;
27+
@end

0 commit comments

Comments
 (0)