Playlist Generator
1.0
|
00001 // 00002 // AddToPlaylistViewController.h 00003 // Playlist2 00004 // 00005 // Created by Max Woolf on 30/01/2012. 00006 // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 00007 // 00008 00009 #import <UIKit/UIKit.h> 00010 00011 @interface AddToPlaylistViewController : UIViewController <UITableViewDataSource, UITableViewDelegate> 00012 { 00013 NSMutableArray *playlistNames; 00014 NSString *uri; 00015 } 00016 00017 -(id)initWithURI:(NSString *)uri; 00018 -(void)populateArray; 00019 @end