Guest User

Untitled

a guest
May 25th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. #import <UIKit/UIKit.h>
  2. #define kSelectedTabDefaultsKey @"Selected Tab"
  3.  
  4. enum {
  5. kByName,
  6. kByObject,
  7. };
  8.  
  9. @interface ToDoListViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, UITabBarDelegate, UIAlertViewDelegate, NSFetchedResultsControllerDelegate>
  10. {
  11. UITableView *tableView;
  12. UITabBar *tabBar;
  13.  
  14. @private
  15. NSFetchedResultsController *_fetchedResultsController;
  16. }
  17. @property (nonatomic, retain) IBOutlet UITableView *tableView;
  18. @property (nonatomic, retain) IBOutlet UITabBar *tabBar;
  19. @property (nonatomic, retain) NSFetchedResultsController *fetchedResultsController;
  20. -(void) addObject;
  21. -(IBAction) toggleEdit;
  22.  
  23. @end
Add Comment
Please, Sign In to add comment