iOS给UIview 加阴影加圆角-加边框

1.加阴影,
oc:要导入框架#import

self.view.layer.shadowOpacity = 0.5;// 阴影透明度

self.view.layer.shadowColor = [UIColor grayColor].CGColor;// 阴影的颜色
self.view.layer.shadowRadius = 3;// 阴影扩散的范围控制
self.view.layer.shadowOffset  = CGSizeMake(1, 1);// 阴影的范围

2.加圆角,

//首先保证你的imageVIew是正方形的,要不然效果不是圆的
self.view.layer.masksToBounds = YES;
self.view.layer.cornerRadius = self.userImage.frame.size.width / 2;
//如果想要有点弧度的不是地球那么圆的可以设置
self.view.layer.cornerRadius =5;这个值越大弧度越大

3.加边框

self.view.layer.borderColor = [UIColor redColor].CGColor;//边框颜色
self.view.layer.borderWidth = 2;//边框宽度

你可能感兴趣的:(ios)