UNICORN - iOS
AppDelegate.h
1 //
2 // AppDelegate.h
3 //
4 // Created by saimushi on 2014/09/19.
5 // Copyright (c) 2014年 saimushi. All rights reserved.
6 //
7 
8 #import "common.h"
9 
10 @interface AppDelegate : UIResponder <UIApplicationDelegate, UITabBarControllerDelegate, ModelDelegate>
11 {
12  // Protected
13 }
14 
15 // Public
16 @property (strong, nonatomic) UIWindow *window;
17 @property (strong, nonatomic) UserModel *me;
18 
19 - (void)registerDeviceToken;
20 - (void)initializeGoogleAnalytics;
21 - (BOOL)isSimulator;
22 - (void)addSubviewFirstFront:(UIView *)argView;
23 - (void)removeFromFirstFrontSubview:(UIView *)argView;
24 - (void)showLoading:(NSString *)argLoadingMessage;
25 - (void)showLoading;
26 - (void)hideLoading;
27 
28 @end
Definition: ModelBase.h:188
Definition: AppDelegate.h:10
Definition: UserModel.h:16