博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
为UIImageView图片增加阴影效果
阅读量:6239 次
发布时间:2019-06-22

本文共 1458 字,大约阅读时间需要 4 分钟。

转载自: UIImageView*pageContenterImageView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"onePageApple.png"]];   //添加边框 CALayer*layer = [pageContenterImageViewlayer]; layer.borderColor= [[UIColor whiteColor]CGColor]; layer.borderWidth=0.0f; //添加四个边阴影 pageContenterImageView.layer.shadowColor= [UIColor blackColor].CGColor; pageContenterImageView.layer.shadowOffset=CGSizeMake(0,0); pageContenterImageView.layer.shadowOpacity=0.5; pageContenterImageView.layer.shadowRadius=5.0;   //添加两个边阴影 //pageContenterImageView.layer.shadowColor = [UIColor blackColor].CGColor; //    pageContenterImageView.layer.shadowOffset = CGSizeMake(2, 2); //    pageContenterImageView.layer.shadowOpacity = 0.5; //    pageContenterImageView.layer.shadowRadius = 2.0;       //------------- 阴影渲染会严重消耗内存 ,导致程序咔叽.   /*阴影效果*/ //添加边框 CALayer*layer = [self.pageContenter layer]; layer.borderColor= [[UIColorwhiteColor]CGColor]; layer.borderWidth=0.0f; //添加四个边阴影 self.pageContenter.layer.shadowColor= [UIColorblackColor].CGColor;//阴影颜色 self.pageContenter.layer.shadowOffset=CGSizeMake(0,0);//阴影偏移 self.pageContenter.layer.shadowOpacity=0.5;//阴影不透明度 self.pageContenter.layer.shadowRadius=5.0;//阴影半径 //添加两个边阴影 //self.pageContenter.layer.shadowColor = [UIColor blackColor].CGColor; //self.pageContenter.layer.shadowOffset = CGSizeMake(2, 2); //self.pageContenter.layer.shadowOpacity = 0.5; //self.pageContenter.layer.shadowRadius = 2.0;

转载于:https://www.cnblogs.com/liuxingzi/archive/2012/12/10/3404291.html

你可能感兴趣的文章
mysql慢查询
查看>>
体会瞬间的舒爽
查看>>
我的友情链接
查看>>
关于网站访问出现的以下问题
查看>>
FFmpeg架构之其他重要数据结构的初始化
查看>>
List(二)
查看>>
Discuz论坛黑链清理教程
查看>>
committed access rate(CAR)承诺访问速率
查看>>
我的友情链接
查看>>
c#访问mysql数据库
查看>>
Postfix 邮件路由和传输研究
查看>>
Servlet学习小结
查看>>
“深入剖析WCF的可靠会话”系列[共8篇]
查看>>
装XP-呼唤可信的技术,呼唤可信的盘。
查看>>
中国***江湖之八大门派
查看>>
算法图解-动态规划
查看>>
Nginx 优化
查看>>
大家放弃XP,开始尝鲜吧……
查看>>
yii2 自动写入update_at,create_at字段
查看>>
PXE批量实现自动化安装系统
查看>>