/LibraryApp/AllBooks.h
C Header | 27 lines | 16 code | 4 blank | 7 comment | 0 complexity | e6d7c15201f69faac76415df3b36ad0b MD5 | raw file
1//
2// MasterViewController.h
3// LibraryApp
4//
5// Created by Glenn Sayers on 11/08/2012.
6// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
7//
8
9#import <UIKit/UIKit.h>
10#import "Book.h"
11#import "MBProgressHUD.h"
12@class DetailViewController;
13
14#import <CoreData/CoreData.h>
15#import "MBProgressHUD.h"
16@interface AllBooks: UITableViewController <NSFetchedResultsControllerDelegate,MBProgressHUDDelegate,NSURLConnectionDelegate>
17{
18 MBProgressHUD *hud;
19}
20@property (strong, nonatomic) DetailViewController *detailViewController;
21@property (nonatomic, strong) NSMutableData *responseData;
22@property (nonatomic, retain) NSMutableArray * allBooks;
23@property (nonatomic, retain) MBProgressHUD *hud;
24
25
26-(void) getAllTheThings;
27@end