
Вот часть кода, который я использую, чтобы предотвратить перекрытие углов ячеек. Я попробовал оба
Код: Выделить всё
cell.contentView.layer.masksToBounds = YES;
cell.layer.masksToBounds = YES; //tried this as a test, still doesn't work
detailTextView.clipsToBounds = YES;
[cell.contentView addSubview:detailTextView];
Код: Выделить всё
cell.layer.masksToBounds = YES;
cell.contentView.layer.masksToBounds = YES;
detailTextView.clipsToBounds = YES;
[cell addSubview:detailTextView];
Подробнее здесь: https://stackoverflow.com/questions/149 ... leviewcell
Мобильная версия