私は少し途方に暮れています。アプリの複数の要素の角を丸めるために、UIViewのレイヤープロパティを使用しました。ただし、この1つの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.
}
セルがロードされる方法について何か不足していますか?