カスタム セル (xib を使用していない) があり、アクセサリ ビューの背景色を変更しようとしています。これが私のコードと私が試したことです」
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
customCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cellID" forIndexPath:indexPath];
cell.accessoryView.backgroundColor = [UIColor redColor];
return cell;
}
結果:
背景色は変わりませんでした。