对于我的UITableView,我制作四舍五入的图像。这就是我做到的:
cell.imageView.image = image;
cell.imageView.layer.cornerRadius = 33;
cell.imageView.clipsToBounds = YES;
cell.separatorInset = UIEdgeInsetsMake(0, 82, 0, 0);
非常简单。我想要的是为该图像创建一个彩色的角落。请在附件上抓一个战利品:
左侧是图像现在看的图片。在右侧,我想添加角落的图像。我怎么能这样做?
任何建议都将不胜感激,谢谢!
答案 0 :(得分:3)
在黑暗中拍摄,但你可以尝试设置
cell.imageView.layer.borderWidth = 3.0;
cell.imageView.layer.borderColor = [UIColor redColor].CGColor;