我正在试验 UIImageView 的层,特别是添加圆角。
我的问题是,执行以下操作对性能(如果有)有什么影响:
[self.imgView.layer setCornerRadius:10.0f];
[self.imgView.layer setMasksToBounds:YES];
[self.imgView.layer setBorderWidth:2.0f];
[self.imgView.layer setBorderColor:[[UIColor yellowColor] CGColor]];
事先“预渲染”图像。
谢谢