2
我正在試驗UIImageView的圖層,特別是添加了圓角。將圓角添加到UIImageView與預先渲染UIImage?
我的問題是, 什麼是性能(如果有的話)的影響,通過執行以下操作:在「預渲染」前手圖像
[self.imgView.layer setCornerRadius:10.0f];
[self.imgView.layer setMasksToBounds:YES];
[self.imgView.layer setBorderWidth:2.0f];
[self.imgView.layer setBorderColor:[[UIColor yellowColor] CGColor]];
。
謝謝
我發現的一個例外是,如果你會經常改變圖像視圖的`image`屬性,比如它是可重用表格視圖單元格的一部分。在這種情況下,我發現預渲染提供了明顯更流暢的滾動(至少在原始iPhone上,並且在較小程度上,3GS)。 – 2010-11-22 17:53:15