Application windows are expected to have a root view controller at the end of application launch

今天把Xcode升级了,模拟器 用的12.1的系统,运行时发现项目总是崩溃,采用9.3系统的测试机发现错误日志如下:

Application windows are expected to have a root view controller at the end of application launch

解决办法如下:

self.window = [[UIWindow alloc]initWithFrame:SCREEN_RECT];
self.window.backgroundColor = [UIColor whiteColor];
self.window.rootViewController = [[UIViewController alloc]init];
[self.window makeKeyAndVisible];

原文地址:https://www.cnblogs.com/sandyzhang/p/9882974.html

时间: 2024-10-14 11:49:14

Application windows are expected to have a root view controller at the end of application launch的相关文章

报错Application windows are expected to have a root view controller at the end of application launc

控制台执行出现如下报错 Application windows are expected to have a root view controller at the end of application launch 解决办法 在AppDelegate.m中的 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 中输入 XXXCon

Xcode7.2.1报错:Application windows are expected to have a root view controller at the end of application launch

原因:在较新的xcod上都会出现这种错误.在iOS5之前的版本,应用加载时,需要一个root view controller,在iOS5以下的版本会有MainWindow作为启动文件,iOS5以后的版本没有了.需要手动创建一个root view controller. 添加如下代码即可: self.window.rootViewController = [[UIViewController alloc]init];

[转]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 vi

设置Windows Azure Linux虚拟机中的root账户

使用Windows Azure 创建好Linux虚拟机之后,如果你使用默认的用户密码登陆root是不行的,如下图所示: 其原因是Windows Azure创建Linux虚拟机时并没有同时设置root密码,如果要想使用root账户,还必须得使用"sudo passwd root"指令重新设置root密码,如下图所示: 现在,你就可以使用root账户登录了. 参考文章:http://www.cnblogs.com/madengwei/p/3842575.html

Create a Qt Widget Based Application—Windows

This turtorial describes how to use Qt Creator to create a small Qt application, Text Finder. It is a simplified version of the Qt UI Tools Text Finder Example. The application user interface is constructed from Qt widgets by using Qt Designer. The a

windows下忘记mysql超级管理员root密码的解决办法

今天帮一个朋友找回了MYSQL的超级管理员ROOT密码,开始输入命令的时候少打了个"点"害的折腾了几个小时,终于解决了,写个教程,方便以后使用! 如果你是服务器是 windows xp/2000/2003/nt 都可以使用这个方法来找回丢失 MYSQL超级管理员root的密码 1,停止MYSQL服务,CMD打开DOS窗口,输入 net stop mysql 2,在CMD命令行窗口,进入MYSQL安装目录 比如 d:mysql20080505in 3,进入mysql安全模式,即当mys

windows下安装MySQL之后设置root密码

初次安装后完毕,使用管理员身份进入cmd界面, 输入" mysql -u root -p; ",出现"Enter password:",直接回车 输入" show databases; ",会看到有mysql这个数据库,下面我们就切换到这个数据库 输入" use mysql; ",切换到mysql数据库 输入 " update user set password=password('123456') where us

windows环境下修改Mysql的root密码

最近一直没用Mysql,root密码给忘了,然后就自己修改了一下,现在整理一下步骤.(我的版本是5.1) 1.首先得到Mysql的bin路径,copy下来. 右击,选择属性. 2.打开命令窗口“CMD”,将路径切换到刚刚复制的Mysql路径下: >>cd C:\Program Files\MySQL\MySQL Server 5.1\bin 关闭SQL服务: >>net stop mysql 然后再输入: >> mysqld --skip-grant-tables 3.

Application tried to present a nil modal view controller on target “Current View Controller”解决方案

情景再现 1,自定义一个storyboard: 打开xcode,按下cmd+N,新建一个Storyboard--->next 将新建立的storyboard命名为:TestViewController--->create 在TestViewController.storyboard上加上一个label,其text为:Hello-ios 2,编写UIButton的UIControlEventTouchUpinside事件: - (IBAction)btnClick:(id)sender { //