错误:XPC连接中断|终止,因为没有系统应用程序

时间:2016-11-03 20:26:24

标签: ios swift

我最近更新到Xcode 8.1并在Swift 3中编码。

我正在开发iOS应用程序,当iPad模拟器处于横向方向时,我会收到以下错误。当我在Landscape orietation中使用iPhone模拟器时,我没有收到错误。

XPC连接中断|终止,因为没有系统应用程序。

在Xcode 8.0上,我没有收到这些错误。我重新启动了我的Mac Mini并重置了模拟器以查看是否可以清除错误。两者都没有。

2 个答案:

答案 0 :(得分:0)

我在将代码迁移到swift 3时遇到了这种情况:

  1. 忘记添加@escaping:

    sendReceipt(completion: @escaping (Receipt) -> () ){ // var to retain the closure self.completion = completion }

  2. 向Lazy var添加值。

    lazy var foo : Example = { return Example() }() // later in another method foo = Example()

答案 1 :(得分:-2)

我发现当我升级到Xcode 8.1时,我只能像以前那样以iOS 9.2(错误消失)而不是iOS 9.0为目标。

我没有在系统中发布Apple bug报告。