美文网首页
IOS 开发中 Whose view is not in the

IOS 开发中 Whose view is not in the

作者: CMD独白 | 来源:发表于2016-06-23 09:22 被阅读530次

    我是在做一个蓝牙项目遇到这种问题的,需求是蓝牙连接后按设备按钮调用相机并且控制相机拍照,因此我选择使用自定义相机,设备发送的参数都是在一个cordova插件中实现的,它的父类是NSObject类型的。当我实现跳转到自定义的相机控制器里面时,一直出现whose view is not in the window hierarchy 这个错误,最后,我把在 viewDidLoad 里面的方法转移到 viewDidAppear 方法里面,然后就解决了。
    该错误简单的说,是由于 "ViewController" 还没有被加载,就调用该 ViewController 或者 ViewController 内的方法时,就会报这个错误。在不同地方调用 ViewController,解决的方法也不太一样。

    1. 在 一个 ViewController 里面调用另外一个 ViewController 是出现这个错误:

    该错误一般是由于在 viewDidLoad 里面调用引起的,解决办法是转移到 viewDidAppear 方法里面

    1. 在 AppDelegate.m 中调用遇到这个错误

    解决办法1:

    UIViewController *topRootViewController = [UIApplication sharedApplication].keyWindow.rootViewController;
    while (topRootViewController.presentedViewController)
     {
        topRootViewController = topRootViewController.presentedViewController;
     }
     
    //[topRootViewController presentViewController:yourController animated:YES completion:nil];
    //or
    [topRootViewController myMethod];
     
    

    解决办法2:

    UIStoryboard *mainstoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
       LoginViewController* loginViewController = [mainstoryboard instantiateViewControllerWithIdentifier:@"LoginViewController"];
       [self.window makeKeyAndVisible];
    //[LoginViewController presentViewController:yourController animated:YES completion:nil];
    //or
    [LoginViewController myMethod];
    

    参考地址:http://stackoverflow.com/questions/11862883/whose-view-is-not-in-the-window-hierarchy

    相关文章

      网友评论

          本文标题:IOS 开发中 Whose view is not in the

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