view 添加四周阴影效果

    self.bgView.layer.shadowOffset = CGSizeMake(1,1);
    self.bgView.layer.shadowOpacity = 0.3;
    self.bgView.layer.shadowColor = [UIColor lightGrayColor].CGColor;
添加阴影效果

添加阴影效果方法二

// 以下是添加的阴影效果
    view.layer.shadowColor = color.CGColor;//shadowColor阴影颜色
    view.layer.shadowOffset = CGSizeMake(0,1);//shadowOffset阴影偏移,x向右偏移4,y向下偏移4,默认(0, -3),这个跟shadowRadius配合使用
    view.layer.shadowOpacity = 0.2;//阴影透明度,默认0
    view.layer.shadowRadius = 2;//阴影半径,默认3
    UIBezierPath * path = [UIBezierPath bezierPath];
    float width = view.bounds.size.width;
    float height = view.bounds.size.height;
    float x = view.bounds.origin.x;
    float y = view.bounds.origin.y;
    float addWH = 2;
    
    CGPoint topLeft      = view.bounds.origin;
    CGPoint topMiddle = CGPointMake(x+(width/2),y-addWH);
    CGPoint topRight     = CGPointMake(x+width,y);
    
    CGPoint rightMiddle = CGPointMake(x+width+addWH,y+(height/2));
    
    CGPoint bottomRight  = CGPointMake(x+width,y+height);
    CGPoint bottomMiddle = CGPointMake(x+(width/2),y+height+addWH);
    CGPoint bottomLeft   = CGPointMake(x,y+height);
    
    
    CGPoint leftMiddle = CGPointMake(x-addWH,y+(height/2));
    
    [path  moveToPoint:topLeft];
    [path addQuadCurveToPoint:topRight
                 controlPoint:topMiddle];
    [path addQuadCurveToPoint:bottomRight
                 controlPoint:rightMiddle];
    [path addQuadCurveToPoint:bottomLeft
                 controlPoint:bottomMiddle];
    [path addQuadCurveToPoint:topLeft
                 controlPoint:leftMiddle];
    
    view.layer.shadowPath = path.CGPath;

可以根据自己的需求来为view 添加阴影效果

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 173,302评论 25 708
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,241评论 4 61
  • 三毛是一个奇女子。 看完她的作品,犹如在沙漠小住几日,风吹过来似乎有沙子扫过脸庞。虽然三毛并没有用华...
    顶呱呱阅读 240评论 0 0
  • http://www.tuicool.com/articles/vQ7Z3qu
    走道牙的人阅读 2,832评论 0 2
  • 李冬香,男,1965年7月生。江西吉安人。博士(后)。教授,博士生导师。现任中宣部思想政治工作研究所研究员、副所长...
    为世瑞阅读 803评论 0 0