iOS iOS This application is modifying the autolayout engine from a background thread

weixin_34194087發表於2017-04-25

報這個錯的原因是在子執行緒中重新整理了UI,解決的辦法是在主執行緒中重新整理UI
dispatch_async(dispatch_get_main_queue(), ^
{
// 重新整理UI

  });

或者
[self performSelectorOnMainThread: withObject:<#(nullable id)#> waitUntilDone:]

相關文章