swift2 This application is modifying the autolayout ……

ワードプレスとかからデータ読んでテーブル表示にすると
警告が、、、画面への反映も遅かったり。。
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.
table.reloadData()
を
dispatch_async(dispatch_get_main_queue()) { self.table.reloadData() }
に。
検索しても英語ページばっかりで詳細が良く分かりませんでしが、、(;´Д`)
まあ出なくなったので良しとします。。。
コメントを残す