本文主要是介绍只设置视图的一个或几个角为圆角,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
可以使用
CAShapeLayer *styleLayer = [CAShapeLayerlayer];
UIBezierPath *shadowPath = [UIBezierPath bezierPathWithRoundedRect:cardStyleView.bounds byRoundingCorners:(UIRectCornerTopLeft|UIRectCornerTopRight) cornerRadii:CGSizeMake(8.0, 8.0)];styleLayer.path = shadowPath.CGPath;cardStyleView.layer.mask = styleLayer;
使用前需引用:头文件:QuartzCore.FrameWork
文章链接:http://www.cnblogs.com/easonoutlook/archive/2012/12/10/2811363.html
这篇关于只设置视图的一个或几个角为圆角的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!