前言
iOS 客戶端開發中,經常碰到圓角檢視的需求,本文簡單總結一下 UIView
及其子類的一些切圓角方法,並且保證避免出現離屏渲染。
UIView(不包括其子類)
UIView *view = [[UIView alloc] init];
view.backgroundColor = [UIColor blackColor];
view.layer.cornerRadius = 3.f;
// 以下兩行,任寫一行
view.layer.masksToBounds = NO;
view.clipToBounds = NO;
// 以下兩行,千萬不要加!
view.layer.masksToBounds = YES;
view.clipToBounds = YES;
複製程式碼
注意點:UIView 只要設定圖層的 cornerRadius
屬性即可(不明白的話,可以看看官方文件裡對 cornerRadius
的描述),如果設定 layer.masksToBounds = YES
,會造成不必要的離屏渲染。
文字類檢視
UITextField
UITextField
有兩種實現方法
// 天然支援設定圓角邊框
UITextField *textField = [[UITextField alloc] init];
textField.borderStyle = UITextBorderStyleRoundedRect;
複製程式碼
// 與 UIView 類似
UITextField *textField = [[UITextField alloc] init];
textField.layer.cornerRadius = cornerRadius;
複製程式碼
UITextView
// 與 UIView 類似
UITextView *textView = [[UITextView alloc] init];
textView.layer.cornerRadius = cornerRadius;
複製程式碼
UILabel
UILabel *label = [[UILabel alloc] init];
// 重點在此!!設定檢視的圖層背景色,千萬不要直接設定 label.backgroundColor
label.layer.backgroundColor = [UIColor grayColor].CGColor;
label.layer.cornerRadius = cornerRadius;
複製程式碼
其它
UIButton
說明:UIButton
的背景圖片,如果是複雜的圖片,可以依靠 UI 切圖來實現。如果是簡單的純色背景圖片,可以利用程式碼繪製帶圓角的圖片。
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
// 設定 UIButton 的背景圖片。
[button setBackgroundImage:image forState:UIControlStateNormal];
複製程式碼
背景圖片繪製方法
+ (UIImage *)pureColorImageWithSize:(CGSize)size color:(UIColor *)color cornRadius:(CGFloat)cornRadius {
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, size.width, size.height)];
view.backgroundColor = color;
view.layer.cornerRadius = cornerRadius;
// 下面方法,第一個參數列示區域大小。第二個參數列示是否是非透明的。如果需要顯示半透明效果,需要傳NO,否則傳YES。第三個引數是螢幕密度
UIGraphicsBeginImageContextWithOptions(view.bounds.size, NO, [UIScreen mainScreen].scale);
[view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
複製程式碼
UIImageView
UIImageView
有四種方式實現圓角:
- 擷取圖片方式(效能較好,基本不掉幀)
@implementation UIImage (extend)
- (UIImage *)drawRectWithRoundedCorner
{
CGRect rect = CGRectMake(0.f, 0.f, 150.f, 150.f);
UIBezierPath *bezierPath = [UIBezierPath bezierPathWithRoundedRect:rect cornerRadius:rect.size.width * 0.5];
UIGraphicsBeginImageContextWithOptions(rect.size, false, [UIScreen mainScreen].scale);
CGContextAddPath(UIGraphicsGetCurrentContext(), bezierPath.CGPath);
CGContextClip(UIGraphicsGetCurrentContext());
[self drawInRect:rect];
CGContextDrawPath(UIGraphicsGetCurrentContext(), kCGPathFillStroke);
UIImage *output = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return output;
}
@end
複製程式碼
- 貝塞爾曲線切割 UIImageView 圓角(掉幀嚴重,不推薦)
- (UIImageView *)roundedRectImageViewWithCornerRadius:(CGFloat)cornerRadius {
UIBezierPath *bezierPath = [UIBezierPath bezierPathWithRoundedRect:self.bounds cornerRadius:cornerRadius];
CAShapeLayer *layer = [CAShapeLayer layer];
layer.path = bezierPath.CGPath;
self.layer.mask = layer;
return self;
}
複製程式碼
-
繪製四個角的遮罩(使用場景受限)
在
UIImageView
上新增一個四個角有內容,其它部分是透明的檢視,只對UIImageView
圓角部分進行遮擋。但要保證被遮擋的部分背景色要與周圍背景相同,避免穿幫。所以當UIImageView
處於一個複雜的背景時,是不適合使用這個方法的。 -
最不推薦做法(當一個頁面只有少量圓角圖片時才推薦使用)
UIImageView *imageView = [[UIImageView alloc] init];
imageView.layer.cornerRadius = 5.f;
imageView.layer.masksToBounds = YES;
複製程式碼
總結
以上是開發過程常用元件的切圓角方法總結,如果有更好的方法或者文中有不對的地方,還請指正提出,謝謝。