iOS 10中的错误:无法从https://mesu.apple.com/assets/中复制资产types的资产信息

2016-10-05 13:36:21.383340 MyApp[1867:72704] 0x60000015e350 Copy matching assets reply: XPC_TYPE_DICTIONARY <dictionary: 0x60000015e350> { count = 1, transaction: 0, voucher = 0x0, contents = "Result" => <int64: 0x600000226fe0>: 29 } 2016-10-05 13:36:21.385076 MyApp[1867:72704] 0x608000556420 Daemon configuration query reply: XPC_TYPE_DICTIONARY <dictionary: 0x608000556420> { count = 2, transaction: 0, voucher = 0x0, contents = "Dictionary" => <dictionary: 0x6080005566e0> { count = 1, transaction: 0, voucher = 0x0, contents = "ServerURL" => <dictionary: 0x608000556790> { count = 3, transaction: 0, voucher = 0x0, contents = "com.apple.CFURL.magic" => <uuid: 0x60800024f720> C1234DCC-2276-5214-B6C1-FD9F5191212 "com.apple.CFURL.string" => <string: 0x608000241ce0> { length = 30, contents = "https://mesu.apple.com/assets/" } "com.apple.CFURL.base" => <null: 0x112e42f20>: null-object } } "Result" => <int64: 0x6080004241e0>: 0 } 2016-10-05 13:36:21.385693 MyApp[1867:72704] [MobileAssetError:29] Unable to copy asset information from https://mesu.apple.com/assets/ for asset type com.apple.MobileAsset.TextInput.SpellChecker 

我正在使用ios 10的 xcode 8版本。 如果,我使用项目在ios 9.3的工作正常,但当我在ios 10中使用相同的项目错误消息出现无法复制资产信息

设置OS_ACTIVITY_MODE =禁用不能解决问题,只能closures日志

要解决这个问题:

1-在故事板中selectTextView

2-从Xcode属性检查器集:

更正=没有

拼写检查=否

3-固定

由于未能从http://mesu.apple.com/assets/com_apple_MobileAsset_TextInput_SpellChecker/com_apple_MobileAsset_TextInput_SpellChecker.xml下载资产进行拼写检查,问题似乎就会发生;

希望这可以帮助

我最终以下面的解决scheme。 按照步骤。

  • Edit Scheme设置环境variables。 在这里输入图像说明
  • 重新启动xcode。
  • 清理和构buildxcode。

而不是在我身边完美的工作。

Swift 3更新

@客户答案解决了这个问题。 但是,如果你正在编程创buildUITextView incase。

 textView.spellCheckingType = .no textView.autocorrectionType = .no