• [转]application windows are expected to have a root view controller错误


    转载地址:http://blog.sina.com.cn/s/blog_6784e6ea01017jfy.html

    最新更正:这个提示几乎不影响编译和运行,可以不用设置。
     
     

    产生这个提示的操作:在xcode4.6中创建一个名字为appTest空工程,create一个ios-application-empty application,直接编译运行

     
    错误提示:虽然编译通过,也能运行,但是底下有错误提示“application windows are expected to have a root view controller”
     
    原因:在较新的xcod上都会出现这种错误。在iOS5之前的版本,应用加载时,需要一个root view controller,在iOS5以下的版本会有MainWindow作为启动文件,iOS5以后的版本没有了。需要手动创建一个root view controller
     
    解决:
    ①创建一个类file - new file - object-c class,名字myViewController,继承于UIViewController
    ②在testAppDelegate.h中添加属性viewController,代码如下:
    @property (strong, nonatomic) myViewController* viewController
     
    ③在testAppDelegate.m中初始化viewController并赋值给rootViewController
    self.viewController = [[ViewController alloc] initWithNibName:@"myViewController" bundle:nil];
    self.window.rootViewController = self.viewController;
     
    再次编译运行已经没有错误了。
     
     
     
  • 相关阅读:
    第28月第23天 lineFragmentPadding
    第28月第22天 iOS动态库
    第28月第21天 记事本Unicode 游戏编程中的人工智能技术
    第28月第11天 vim -b
    第28月第10天 iOS动态库
    第28月第8天
    第28月第7天 本地摄像头方向
    第28月第5天 uibutton交换方法
    第28月第4天 __bridge_transfer
    python __getattr__ __setattr__
  • 原文地址:https://www.cnblogs.com/csshaw/p/3790085.html
Copyright © 2020-2023  润新知