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

北城以北 提交于 2019-11-28 04:49:38

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

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.

Swift 3 Update

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

textView.spellCheckingType = .no
textView.autocorrectionType = .no
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!