我已经在这里待了几个小时,不知道如何解决。我在 Library/Logs 目录中的 .asl 文件中看到以下警告消息。
Sep 28 21:16:44 MacBook-Pro.local SpringBoard[17848] <Warning>: *** error reading settings archive file: <SBRootSettings: /Users/{user}/Library/Application Support/iPhone Simulator/7.0-64/Documents/com.apple.springboard.settings/RootSettings.plist>
Sep 28 21:16:49 MacBook-Pro.local SpringBoard[17848] <Warning>: Application windows are expected to have a root view controller at the end of application launch
Sep 28 21:16:49 MacBook-Pro.local SpringBoard[17848] <Warning>: Using your own bundle identifier as an NSUserDefaults suite name does not make sense and will not work. Break on _NSUserDefaults_Log_Nonsensical_Suites to find this
Sep 28 21:16:49 MacBook-Pro.local SpringBoard[17848] <Warning>: Launch Services: Registering unknown app identifier com.apple.mobilemail failed
应用程序没有崩溃。但是,它只显示这些日志。有时,我在控制台区域看到以下错误消息(退出模拟器后):-
Terminating in response to Springboard's termination
我尝试了很多次谷歌搜索该错误但没有运气。我正在使用情节提要,并且我的导航控制器已设置为初始视图控制器。此外,我的故事板已设置为部署信息中的主界面。我的委托中有以下功能:-
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
return YES;
}
我不确定我是否有 1 个问题或多个问题。你能告诉我如何进行吗?