iOS效能調優

weixin_34337265發表於2017-01-09

在instruments-core Animation, 點選Display Settings, 也就是右邊欄那個小齒輪, 勾選Color blended layers, 即可檢視檢視繪製有沒有不合理的地方, 連線裝置點選紅色按鈕開始錄屏之後, 發現凡是中文的地方都是一片紅, 可用下面這段程式碼減少中文實際渲染區域

 _labelOfTitle.layer.masksToBounds = YES; 
 _labelOfTitle.backgroundColor = [UIColor whiteColor];
//    _labelOfTitle.backgroundColor = [UIColor groupTableViewBackgroundColor];

感謝http://www.cocoachina.com/ios/20170106/18528.html, 寫的很棒很棒

相關文章