为UIImage创建一个彩色角落

时间:2014-11-18 15:30:52

标签: ios objective-c

对于我的UITableView,我制作四舍五入的图像。这就是我做到的:

   cell.imageView.image = image;
   cell.imageView.layer.cornerRadius = 33;
   cell.imageView.clipsToBounds = YES;
   cell.separatorInset = UIEdgeInsetsMake(0, 82, 0, 0);

非常简单。我想要的是为该图像创建一个彩色的角落。请在附件上抓一个战利品:

enter image description here enter image description here

左侧是图像现在看的图片。在右侧,我想添加角落的图像。我怎么能这样做?

任何建议都将不胜感激,谢谢!

1 个答案:

答案 0 :(得分:3)

在黑暗中拍摄,但你可以尝试设置

cell.imageView.layer.borderWidth = 3.0;

cell.imageView.layer.borderColor = [UIColor redColor].CGColor;