我有点茫然。我已经使用UIView的layer属性来处理我的应用程序中多个元素的角落。但是,这个UIImageView根本不符合要求。不知道我在想什么。
UIImageView(称为PreviewImage)包含在表视图单元格中。我尝试将cornerRadius属性的多个位置(在单元格本身以及在创建该单元格的控制器中)设置为无效。
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.
}
关于我丢失的单元格加载方式,有什么问题吗?