給view某個角 設置圓角

若是須要將UIView的4個角所有都爲圓角,作法至關簡單,只需設置其Layer的cornerRadius屬性便可(項目須要使用QuartzCore框架)。而若要指定某幾個角(小於4)爲圓角而別的不變時,這種方法就很差用了。框架

對於這種狀況,Stackoverflow上提供了幾種解決方案。其中最簡單優雅的方案,就是使用UIBezierPath。下面給出一段示例代碼。iview

UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(120, 10, 80, 80)];
view2.backgroundColor = [UIColor redColor];[self.view addSubview:view2];

UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:view2.bounds byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight cornerRadii:CGSizeMake(10, 10)];

CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
maskLayer.frame = view2.bounds;
maskLayer.path = maskPath.CGPath;

view2.layer.mask = maskLayer;

其中ui

byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight

 

 

指定了須要成爲圓角的角。該參數是UIRectCorner類型的,可選的值有:code

* UIRectCornerTopLeft
* UIRectCornerTopRight
* UIRectCornerBottomLeft
* UIRectCornerBottomRight
* UIRectCornerAllCorners

 

 

從名字很容易看出來表明的意思,使用「|」來組合就行了get

相關文章
相關標籤/搜索