(iPad/iPhone)给各种控件设置边框或圆角
//设置layerCALayer *layer=[backView layer];
//是否设置边框以及是否可见
[layer setMasksToBounds:YES];
//设置边框圆角的弧度
[layer setCornerRadius:10.0];
//设置边框线的宽
//
[layer setBorderWidth:1];
//设置边框线的颜色
[layer setBorderColor:[[UIColor blackColor] CGColor]];
其中backView可以是任何控件,
还有不要忘了加:
#import <QuartzCore/QuartzCore.h>
摘自 安迪·潘 的专栏
补充:移动开发 , IOS ,