60
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で使用した同じプロジェクトのエラー メッセージが表示され、資産情報をコピーできません.. .

4

3 に答える 3

21

私は以下の解決策に行き着きました。手順に従ってください。

  • で環境変数を設定しEdit Schemeます。 ここに画像の説明を入力
  • xcode を再起動します。
  • xcode をクリーンアップしてビルドします。

&私の側で完璧に動作するより。

于 2016-10-21T05:51:36.090 に答える
2

Swift 3 アップデート

@ゲストの回答は問題を解決します。ただし、UITextViewプログラムで作成している場合。

textView.spellCheckingType = .no
textView.autocorrectionType = .no
于 2017-06-27T17:13:06.290 に答える