美文网首页
iOS view圆角加阴影

iOS view圆角加阴影

作者: 名a字太难搞了 | 来源:发表于2018-11-29 17:36 被阅读14次

UIView *view=[[UIView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
view.backgroundColor=[UIColor yellowColor];
//v.layer.masksToBounds=YES;这行去掉
view.layer.cornerRadius=10;
view.layer.shadowColor=[UIColor redColor].CGColor;
view.layer.shadowOffset=CGSizeMake(0, 0);
view.layer.shadowOpacity=0.5;
view.layer.shadowRadius=5;
[self.view addSubview:view];

相关文章

网友评论

      本文标题:iOS view圆角加阴影

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