为什么我的 iOS 应用程序在我从 iOS 模拟器打开时失败/关闭?

Why my iOS app fails / closes when I open it from iOS simulator?

我正在开发一个小型 Swift 应用程序。在 Xcode 中,当我按 run 按钮或使用 cmd + R 键盘快捷键时,模拟器和我的应用程序 运行s 如我所料。但是在模拟器中,当我单击我安装的应用程序的图标 运行 它时,我的应用程序出现了一秒钟然后崩溃/失败,没有错误消息或没有日志。

我是 iOS 开发的新手,不知道这是一个常见问题还是我哪里做错了。

我已经通过 iOS Simulator Menu -> Reset Content and Settings... 选项重置了模拟器内容和设置。

我已经重新启动了iOS模拟器,Xcode和操作系统(OS X),但问题仍然存在。

我基本上想在模拟器中单击我安装的应用程序的图标,然后 运行 它。我该如何解决这个问题?

--

编辑到期评论:

我不碰 AppDelegate.swift 文件。它与第一次生成相同。而我只有一个 ViewController class, 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
    }

好的,我有解决办法。感谢@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 部分。