1. 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.
answer: 原因是使用XCode7 iOS9+ 會(huì)認(rèn)定這行可能會(huì)有crash 的風(fēng)險(xiǎn)钧萍,所以停下來警告
原因是這段code 是UI 畫面更新乖仇,但你呼叫的是非主線程所以只要讓回主線程在執(zhí)行就可以了
2. webview 加載的視頻標(biāo)簽已經(jīng)設(shè)置為了autoplay但是webview 加載視頻的時(shí)候并不會(huì)自動(dòng)的播放
原因是在webview 初始化的時(shí)候必須實(shí)現(xiàn)以下兩句代碼
_webView.allowsInlineMediaPlayback = YES;
_webView.mediaPlaybackRequiresUserAction = NO;