/LibraryApp/AllBooks.h

https://bitbucket.org/glennsayers/rkyve · 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. #import <UIKit/UIKit.h>
  9. #import "Book.h"
  10. #import "MBProgressHUD.h"
  11. @class DetailViewController;
  12. #import <CoreData/CoreData.h>
  13. #import "MBProgressHUD.h"
  14. @interface AllBooks: UITableViewController <NSFetchedResultsControllerDelegate,MBProgressHUDDelegate,NSURLConnectionDelegate>
  15. {
  16. MBProgressHUD *hud;
  17. }
  18. @property (strong, nonatomic) DetailViewController *detailViewController;
  19. @property (nonatomic, strong) NSMutableData *responseData;
  20. @property (nonatomic, retain) NSMutableArray * allBooks;
  21. @property (nonatomic, retain) MBProgressHUD *hud;
  22. -(void) getAllTheThings;
  23. @end