Was confused about why some cell labels weren’t displaying until i found this:

<pre>
if ([cell.contentView subviews]){
for (UIView *subview in [cell.contentView subviews]) {
[subview removeFromSuperview];
}
}
</pre>

Why was it there? I don’t remember.