我正在开发一个小型的Swift应用程序。在Xcode中,当我按下run
按钮或使用cmd + R
键盘快捷键时,模拟器和我的应用程序按预期运行。但是在模拟器中,当我点击我安装的应用程序的图标来运行它时,我的应用程序会显示一秒钟,然后崩溃/失败,没有错误消息或没有日志。
我是iOS开发的新手,不知道这是一个常见问题还是我做错了。
我已通过iOS Simulator Menu -> Reset Content and Settings...
选项重置模拟器内容和设置。
我重新启动了iOS模拟器,Xcode和操作系统(OS X),但问题仍然存在。
我基本上想在模拟器中点击我安装的应用程序图标并运行它。我该如何解决这个问题?
-
编辑到期评论:
我没有触摸AppDelegate.swift
文件。它与首次生成的相同。我只有一个ViewController类ViewController.swift
,方法是:
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
override func viewWillAppear(animated: Bool) {
login()
}
/// Login method
func login() {
// login methos's body
}
答案 0 :(得分:2)
好的,我有解决方案。感谢@Phillip Mills的评论。该评论有助于我找到解决方案。
在System Log Queries
中,我发现报告崩溃,如下所示:
Dyld Error Message:
Library not loaded: @rpath/Alamofire.framework/Alamofire
Referenced from: /Users/USER/Library/Developer/CoreSimulator/Devices/79ECB6DD-8AF9-42F7-8543-AF9F689258C0/data/Containers/Bundle/Application/126E829F-A5D3-48CE-B65A-C06CE811A679/MyAwesoneApp.app/MyAwesoneApp
Reason: image not found
并用谷歌搜索,而不是从github发现这个问题: dyld: Library not loaded: @rpath/Alamofire.framework/Alamofire on my iPhone(iOS8) while debuging #101
我尝试过从屏幕截图中看到它并且有效!
我忘了将Alamofire
框架添加到Link Binary With Libraries
部分。