再點擊UITextField的時候,會出現崩潰的情況,如下:
2017-01-12 17:46:53.892845 BangBang[3366:1042744] *** Assertion failure in -[UICGColor encodeWithCoder:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit/UIKit-3600.5.2/UIColor.m:1549
2017-01-12 17:47:04.514804 BangBang[3366:1042744] [Bugly] Trapped uncaught exception 'NSInternalInconsistencyException', reason: 'Only RGBA or White color spaces are supported in this situation.'
出現類似的情況
1、你可能使用了第三方鍵盤
2、在AppDelegate.m使用
[[UINavigationBar appearance] setBarTintColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"back.png"]]];
這一句導致的,刪除這一句,統一的導航條顏色設置放在BaseController中解決。在此記錄一下,方便遇到和我一樣問題的童鞋解決問題。