UITableView cell 在ipad 缩进

ios9又引入了新的API,对于以前版本的UITableView,Cell会自动缩进,解决办法很简单:

if ([_myTableView respondsToSelector:@selector(setCellLayoutMarginsFollowReadableWidth:)]) {  
    _myTableView.cellLayoutMarginsFollowReadableWidth = NO;  
}  

你可能感兴趣的:(UITableView cell 在ipad 缩进)