Apple change the UITableViewCell hierarchy in iOS 7
UITableViewCell
Using iOS 6.1 SDK
| |
Objective-C:
UIView *cellScrollView = [[cell contentView] superview]; [cellScrollView setClipsToBounds:NO];
Swift:
let cellScrollView = cell.contentView.superview cellScrollView?.clipsToBounds = false