在 ? ?AppDelegate.m ? ?文件中:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
[self.window makeKeyAndVisible];
//1.取出已存的賬號,判斷是否過期,是否仍然正確之類
BOAccount *account = [BOAccountTool readAccount];
if (account) {
HomeViewController *homeVC = [[HomeViewController alloc] init];
self.window.rootViewController = homeVC;
}else{//2.如果不存在,登陸
LoginViewController *loginVC = [[LoginViewController alloc] init];
self.window.rootViewController = loginVC;
}
return YES;
}