scihant / CTPanoramaView

A library that displays spherical or cylindrical panoramas with touch or motion based controls.
MIT License
1.04k stars 88 forks source link

Fix Main Thread Checker issues #21

Closed Sega-Zero closed 6 years ago

Sega-Zero commented 6 years ago

Since device motion updates are performed in opQueue, it is not safe to read or set ui properties in a handler. Wrapped this code in DispatchQueue.main.async to resolve MainThreadChecker issues: ctpanoramaview swift edited 2018-04-29 15-59-17 ctpanoramaview swift edited 2018-04-29 15-58-24

scihant commented 6 years ago

Thanks for your contribution!