欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

iOS 给view添加阴影效果

程序员文章站 2022-05-05 12:30:50
...
UIBezierPath *shadowPath = [UIBezierPath     
bezierPathWithRect:imageView.bounds];  
imageView.layer.masksToBounds = NO;  
imageView.layer.shadowColor = [UIColor blackColor].CGColor;  
imageView.layer.shadowOffset = CGSizeMake(0.0f, 5.0f);  
imageView.layer.shadowOpacity = 0.5f;  
imageView.layer.shadowPath = shadowPath.CGPath;