Grouped UITableView has 20px of extra padding at the bottom

前端 未结 12 1159
长发绾君心
长发绾君心 2020-12-23 09:34

Grouped table views seem to have extra padding on the bottom in iOS 6 (iOS 5 does not have it), but I can\'t find any documentation that suggests this is correct / expected

12条回答
  •  渐次进展
    2020-12-23 10:05

    You can use contentInset to compensate the 20px extra bottom margin:

    tableView.contentInset = UIEdgeInsetsMake(0, 0, -20, 0);
    

提交回复
热议问题