最佳答案
我有点不知所措。我已经使用了 UIView 的图层属性来圆滑我的应用程序中的多个元素的角落。然而,这个 UIImageView 根本就没有遵守。不知道我错过了什么。
UIImageView (称为 previewImage)包含在表视图单元格中。我已经尝试过设置角半径属性多个位置(在单元格本身和创建单元格的控制器中) ,但是没有用。
static NSString *CellIdentifier = @"MyTableViewCell";
MyTableViewCell *cell = (MyTableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:CellIdentifier owner:self options:nil];
cell = [topLevelObjects objectAtIndex:0];
cell.previewImage.layer.cornerRadius = 20; //Made it 20 to make sure it's obvious.
}
我是不是忽略了细胞装载的方式?