web-dev-qa-db-ja.com

iOS 10のエラー:資産タイプのhttps://mesu.Apple.com/assets/から資産情報をコピーできません

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

xcode 8 version with ios 1を使用しています。 ios 9.でプロジェクトを使用する場合は正常に動作しますが、ios 1で使用したプロジェクトと同じエラーメッセージが表示される場合アセット情報をコピーできません。 =。

56
Rahul Mayani

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

  • Edit Schemeで環境変数を設定します。 enter image description here
  • Xcodeを再起動します。
  • Xcodeをクリーン&ビルドします。

&私の側で完璧に動作します。

20
Rahul Mayani

OS_ACTIVITY_MODE = disableを設定しても問題は解決せず、ログをオフにするだけです

問題を修正するには:

1-ストーリーボードでTextViewを選択します

2- Xcode属性インスペクターセットから:

修正=いいえ

スペルチェック=いいえ

3-修正済み

この問題は、スペルチェック用のアセットを次の場所からダウンロードできないために発生するようです。 http://mesu.Apple.com/assets/com_Apple_MobileAsset_TextInput_SpellChecker/com_Apple_MobileAsset_TextInput_SpellChecker.xml

お役に立てれば

48
guest

Swift 3アップデート

@guest answerは問題を修正します。ただし、プログラムでUITextViewを作成している場合は注意してください。

textView.spellCheckingType = .no
textView.autocorrectionType = .no
2
rptony