Playlist Generator  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Defines
Playlist2/DisplayPlaylistViewController.h
Go to the documentation of this file.
00001 //
00002 //  DisplayPlaylistViewController.h
00003 //  Playlist2
00004 //
00005 //  Created by Max Woolf on 15/12/2011.
00006 //  Copyright (c) 2011 __MyCompanyName__. All rights reserved.
00007 //
00008 
00009 #import <UIKit/UIKit.h>
00010 #import "MBProgressHUD.h"
00011 
00012 @interface DisplayPlaylistViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, NSURLConnectionDataDelegate, UIAlertViewDelegate>
00013 {
00014     NSArray *artistList;
00015     NSArray *trackList;
00016     
00017     NSMutableArray *activityIndicators;
00018     NSMutableArray *cells;
00019     NSMutableArray *URLs;
00020     
00021     IBOutlet UITableView *table;
00022     MBProgressHUD *hud;
00023     
00024     int currentConnectionNumber;
00025     NSMutableArray *connections;
00026     
00027     NSMutableData *receivedData;
00028 }
00029 
00030 -(id)initWithArtistArray:(NSArray *)artists tracksArray:(NSArray *)tracks;
00031 -(BOOL)resultsExistForJSON:(NSString *)jsonString;
00032 @end