博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
设置圆角、定向设置圆角-按钮等控件
阅读量:5952 次
发布时间:2019-06-19

本文共 464 字,大约阅读时间需要 1 分钟。

  hot3.png

//定向设置圆角UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:whiteView.bounds byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight cornerRadii:CGSizeMake(10, 10)];    CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];    maskLayer.frame = whiteView.bounds;    maskLayer.path = maskPath.CGPath;    whiteView.layer.mask = maskLayer;

可以定向设置圆角

layer.cornerRadius//圆角

这个属性用在storyboard中可以设置全部圆角123315_iahn_2429434.png

转载于:https://my.oschina.net/rainwz/blog/617563

你可能感兴趣的文章