ios圆角图片的实现
图片做圆角是非常常见的,一般用做用户头像什么,ios中怎么实现呢: 1.layer层修改 UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"huabianwl003"]]; imageView.center = self.view.center; [self.view addSubview:imageView]; [imageView.layer setCornerRadius:imageView.frame.size.width/2]; [imageView.layer setMasksToBounds:YES]; 这里注意一点,使用了cornerRaius后,shadow投影就无效果了,怎么样能又是圆角又有投影呢,做两层吧! 这个方式是ios开发中最常用的,方便简单,但是开销的性能比较大,尤其在tableView中重用的cell里面使用。具体消耗可以看看这篇文章: http://www.cocoachina.com/ios/20150803/12873.html 2.重绘图片 - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view,