如果需要將UIView的4個角全部都為圓角,做法相當簡單,只需設置其Layer的cornerRadius屬性即可(項目需要使用QuartzCore框架)。而若要指定某幾個角(小于4)為圓角而別的不變時,這種方法就不好用了。
對于這種情況,Stackoverflow上提供了幾種解決方案。其中最簡單優雅的方案,就是使用UIBezierPath。下面給出一段示例代碼。
UIView *viewBackground = [[UIView alloc] initWithFrame:frame(10, 10, WIDTH-20, 182)];
viewBackground.backgroundColor = [UIColor whiteColor];
viewBackground.layer.cornerRadius = 3;
viewBackground.layer.masksToBounds = YES;
[self addSubview:viewBackground];
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:viewBackground.bounds byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight cornerRadii:CGSizeMake(10, 10)];
CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
maskLayer.frame = viewBackground.bounds;
maskLayer.path = maskPath.CGPath;
viewBackground.layer.mask = maskLayer;
其中,
byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight
指定了需要成為圓角的角。該參數是UIRectCorner類型的,可選的值有:
* UIRectCornerTopLeft
* UIRectCornerTopRight
* UIRectCornerBottomLeft
* UIRectCornerBottomRight
* UIRectCornerAllCorners
從名字很容易看出來代表的意思,使用“|”來組合就好了。