Error in iOS 10 : Unable to copy asset information from https://mesu.apple.com/assets/ for asset type

后端 未结 3 974
北海茫月
北海茫月 2020-12-08 03:50
2016-10-05 13:36:21.383340 MyApp[1867:72704] 0x60000015e350 Copy matching assets reply: XPC_TYPE_DICTIONARY   { count = 1, transact         


        
相关标签:
3条回答
  • 2020-12-08 04:24

    Swift 3 Update

    @guest answer fixes the problem. But incase if you are creating the UITextViewprogrammatically.

    textView.spellCheckingType = .no
    textView.autocorrectionType = .no
    
    0 讨论(0)
  • 2020-12-08 04:28

    Setting OS_ACTIVITY_MODE = disable doesn't resolve the issue but only turn off the logs

    To fix the issue:

    1- In storyboard select the TextView

    2- From Xcode attributes inspector set:

    Correction = No

    Spell Checking = No

    3- Fixed

    The problem appears to happen because of failure to download assets for spell checking from: http://mesu.apple.com/assets/com_apple_MobileAsset_TextInput_SpellChecker/com_apple_MobileAsset_TextInput_SpellChecker.xml

    Hope this helps

    0 讨论(0)
  • 2020-12-08 04:35

    I have end up with below solution. Follow the steps.

    • Set the the Environment Variable in Edit Scheme.
    • Restart the xcode.
    • Clean & build xcode.

    & than work perfectly on my side.

    0 讨论(0)
提交回复
热议问题