给uiview添加阴影或添加圆角

      

1.添加阴影

        self.layer.shadowOffset = CGSizeMake(-5, 3);

        self.layer.shadowOpacity = 0.4;

        self.layer.shadowColor = [UIColor blackColor].CGColor;

2.添加圆角

  btn. layer. cornerRadius = 8;

        btn.layer.masksToBounds  = YES;//使用边界来做遮罩

你可能感兴趣的:(UIView)