點選tabbarItem的時候判斷使用者是否處於登入狀態

weixin_34249678發表於2016-09-20

解決的需求:在點選tabbarItem的時候判斷使用者是否處於登入狀態,如果未登入則跳轉登入頁面,如果已登入則直接進入。


1.首先設定UITabBarController的代理為app delegate如下:tabBar.delegate = self;             2.然後在app delegate設定代理

3.實現代理裡面的- (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController方法


//程式碼如下:

- (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController

{

if ([viewController.tabBarItem.titleisEqualToString:@"我的"]) {

//如果使用者ID存在的話,說明已登陸

if ([CCPUserInfo sharedUserInfo].uid.length == 0) {

return YES;

}else{

//跳到登入頁面 CCPLoginVC

CCPLoginVC *login = [[CCPLoginVCalloc] init];

//隱藏tabbar

login.hidesBottomBarWhenPushed =YES;

[((UINavigationController *)tabBarController.selectedViewController)pushViewController:login animated:YES];

returnNO;

}

}else {

return YES;

}

return YES;

}

相關文章