/LibraryApp/AllBooks.h
https://bitbucket.org/glennsayers/rkyve · C Header · 27 lines · 16 code · 4 blank · 7 comment · 0 complexity · e6d7c15201f69faac76415df3b36ad0b MD5 · raw file
- //
- // MasterViewController.h
- // LibraryApp
- //
- // Created by Glenn Sayers on 11/08/2012.
- // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "Book.h"
- #import "MBProgressHUD.h"
- @class DetailViewController;
- #import <CoreData/CoreData.h>
- #import "MBProgressHUD.h"
- @interface AllBooks: UITableViewController <NSFetchedResultsControllerDelegate,MBProgressHUDDelegate,NSURLConnectionDelegate>
- {
- MBProgressHUD *hud;
- }
- @property (strong, nonatomic) DetailViewController *detailViewController;
- @property (nonatomic, strong) NSMutableData *responseData;
- @property (nonatomic, retain) NSMutableArray * allBooks;
- @property (nonatomic, retain) MBProgressHUD *hud;
- -(void) getAllTheThings;
- @end