美文网首页
iOS 系统tabbarcontroller拦截选中事件

iOS 系统tabbarcontroller拦截选中事件

作者: 木_风 | 来源:发表于2017-06-05 09:57 被阅读946次

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

    {

    NSLog(@"viewcontoller===%@",viewController.childViewControllers);

    if([[viewController.childViewControllersobjectAtIndex:0]isKindOfClass:[FOLLOWViewControllerclass]]&&[[UserObjectsharedInstance].login_statuesintValue]!=1)

    {

    [JXTAlertToolsshowAlertWith:selftitle:@""message:@"你还没登录,请去登录吧."callbackBlock:^(NSIntegerindex)

    {

    if(index==0)

    {

    [GlobalObjectexitLogin];

    }

    }cancelButtonTitle:@"确定"destructiveButtonTitle:@"取消"otherButtonTitles:nil,nil];

    returnNO;

    }

    returnYES;

    }

    相关文章

      网友评论

          本文标题:iOS 系统tabbarcontroller拦截选中事件

          本文链接:https://www.haomeiwen.com/subject/nuhifxtx.html