1. 程式人生 > >解決IOS9 This application is modifying the autolayout engine from a background thread, which can lea

解決IOS9 This application is modifying the autolayout engine from a background thread, which can lea

IOS9要求UI的變更都在主執行緒裡,否則報錯

 This application is modifying the autolayout engine from a background thread, which can lead to engine corruption and weird crashes.  This will cause an exception in a future release.



解決方法:

dispatch_async(dispatch_get_main_queue(), ^{
                     // 更UI
                 });


再加上

 
self.automaticallyAdjustsScrollViewInsets = NO;