Если мы используем следующий код, я могу удалить все подпредставления, включая textLabel.Мне нужно удалить все, кроме contentview titlelabel
for (int i=0; i < [self.mylist count]; i++) {
NSIndexPath *lIndexPath = [NSIndexPath indexPathForRow:i inSection:0];
UITableViewCell *cell = [tableView cellForRowAtIndexPath:lIndexPath];
for (UIView *view in cell.contentView.subviews) {
[view removeFromSuperview];
}
}
Любая идея, как этого избежать