No.1
<UIVisualEffectView 0x7fe2130553e0> is being asked
to animate its opacity. This will cause the effect to
appear broken until opacity returns to 1.
該警告容易在iOS 8系統中復現。其問題是系統在執行
alpha
漸變動畫時,UIVisualEffectView
創建了裁剪區域外的模糊實例,警告說,他的效果可能會被破壞,然而經過測試沒有被破壞。又因為在這個問題在系統的層級,我們控制不了。所以暫時沒有做處理。
詳情見鏈接
No.2
CGContextSaveGState: invalid context 0x0. This is a serious
error. This application, or a library it uses, is using an
invalid context and is thereby contributing to an overall
degradation of system stability and reliability.
This notice is a courtesy: please fix this problem.
It will become a fatal error in an upcoming update.
該警告目的是說項目中某一個地方使用的上下文去繪制圖形時,上下文是無效的。仔細檢查項目中用
drawRect
方法的地方,是否有其他異常,比如我的代碼是這么寫之后出現了這樣的警告。
8983551A-346B-40BD-89E5-F78075606F0D.png
詳情見鏈接
No.3
**CUICatalog: Invalid asset name supplied: **
這個就很簡單了,項目中的
[UIImage imageNamed:@""]
獲取到的圖片為nil
,就是圖片名字搞錯了~,如果你自己也不清楚哪里錯了,簡單粗暴的方法斷點調試如圖:
ATz38.png
詳情見鏈接
今天先到此為止,這篇文章會一直更新下去!