Guest User

Untitled

a guest
Jul 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. //
  2. // LIBAppDelegate.h
  3. // LIB
  4. //
  5. // Created by on 1/18/10.
  6. // Copyright __MyCompanyName__ 2010. All rights reserved.
  7. //
  8.  
  9. #import <UIKit/UIKit.h>
  10.  
  11. @interface LIBAppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate> {
  12. UIWindow *window;
  13. UITabBarController *tabBarController;
  14. NSMutableArray *books;
  15. NSMutableArray *tips;
  16.  
  17.  
  18. }
  19.  
  20. @property (nonatomic, retain) IBOutlet UIWindow *window;
  21. @property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;
  22. @property (nonatomic, retain) NSMutableArray *books;
  23. @property (nonatomic, retain) NSMutableArray *tips;
  24.  
  25.  
  26. @end
Add Comment
Please, Sign In to add comment