2016-10-05 13:36:21.383340 MyApp[1867:72704] 0x60000015e350 Copy matching assets reply: XPC_TYPE_DICTIONARY { count = 1, transact
Swift 3 Update
@guest answer fixes the problem. But incase if you are creating the UITextView
programmatically.
textView.spellCheckingType = .no
textView.autocorrectionType = .no
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.
Edit Scheme
.
& than work perfectly on my side.