UITableView在iPad iOS9下cell宽度显示不全

UITableView在iOS9后新增了一个属性cellLayoutMarginsFollowReadableWidth,该属性会影响UITableViewCell在iPad下的显示,且该属性默认为YES

当你发现在iPad下UITableViewCell不能占满整个UITableView的宽度时,只需将该属性设置为NO即可。

[self.tableView setCellLayoutMarginsFollowReadableWidth:NO];