iOS开发-设置UIView阴影效果及圆角

要实现以下UI效果:

iOS开发-设置UIView阴影效果及圆角_第1张图片
1222.png

直接贴代码

-(UIView *)bgView{

    if (!_bgView) {
        _bgView = [[UIView alloc]init];
        _bgView.layer.shadowColor = RGB(0, 0, 0).CGColor;
        _bgView.layer.shadowOpacity = 0.11f;
        _bgView.layer.shadowRadius = 3.f;
        _bgView.layer.shadowOffset = CGSizeMake(3, 3);
        _bgView.backgroundColor = [UIColor whiteColor];
        
        _bgView.layer.cornerRadius = 6;
//        _bgView.layer.masksToBounds = YES;
    }
    return _bgView;
}

效果就出来了

iOS开发-设置UIView阴影效果及圆角_第2张图片
屏幕快照 2017-06-12 下午5.11.31.png

圆角设置大了 哈哈 再微调下 希望对你们有帮助

你可能感兴趣的:(iOS开发-设置UIView阴影效果及圆角)