简体   繁体   中英

How to fix warning after migration to xcode 11

I need help in resolving these warnings after I migrated to Xcode 11. The warnings are as follows:

Unsupported use of UIKit API off the main thread: UIAccessibilityIsGuidedAccessEnabled() Unsupported use of UIKit API off the main thread: UIAccessibilityIsAssistiveTouchRunning() Unsupported use of UIKit API off the main thread: UIAccessibilityIsGuidedAccessEnabled() Unsupported use of UIKit API off the main thread: UIAccessibilityIsAssistiveTouchRunning() Unsupported use of UIKit API off the main thread: UIAccessibilityIsGuidedAccessEnabled()

You're modifying UI off the main thread. Wrap the calls to the listed methods in your code in DispatchQueue.main blocks:

DispatchQueue.main.async {
  // code goes here
}

If you want to learn more about DispatchQueue.main I wrote a blog post about it recently: link

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM