美文网首页iOS随记
如何让UIView有卡片效果

如何让UIView有卡片效果

作者: 脚踏实地的小C | 来源:发表于2017-10-17 17:48 被阅读16次

    其实想让UIview有那种卡片效果,说白了就是给UIview添加阴影。代码其实也就那么几句:

    self.backgroundColor = [UIColor whiteColor];//不可少的,但却是最容易被忽视的
    self.layer.cornerRadius = 4; 
    self.layer.shadowOpacity = 0.2;// 阴影透明度
    self.layer.shadowOffset = CGSizeMake(1, 1);//// 阴影的范围
    

    参考文献:
    iOS给UIview 加阴影加圆角加边框

    相关文章

      网友评论

        本文标题:如何让UIView有卡片效果

        本文链接:https://www.haomeiwen.com/subject/wvoduxtx.html