美文网首页
iOS 关于接口返回登录过期的界面弹出

iOS 关于接口返回登录过期的界面弹出

作者: 路边的风景呢 | 来源:发表于2020-12-09 16:29 被阅读0次

    我这里的需求是 点击界面的时候判断是否登录,我的视图的跟控制器是 TabBarController + navgationController  .

    然后是接口返回登录过期的时候要弹出登录界面。如下

     AppDelegate.h 文件

    AppDelegate.m  文件

    下面是在网络封装的工具类里 判断的地方:

    代码:

        AppDelegate *delegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];

        UINavigationController *selectVC = (UINavigationController*)delegate.tabBarVC.selectedViewController;

        LoginViewController * login = [[YMLoginViewController alloc]init];

        login.modalPresentationStyle = UIModalPresentationFullScreen;

        [selectVCpresentViewController:login animated:YES completion:nil];

    相关文章

      网友评论

          本文标题:iOS 关于接口返回登录过期的界面弹出

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