出现这种现象只需要把 heightforfoot改为0.01
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { return 30;}- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section { return 0.01;}
最终效果
本文共 303 字,大约阅读时间需要 1 分钟。
出现这种现象只需要把 heightforfoot改为0.01
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { return 30;}- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section { return 0.01;}
最终效果
转载于:https://www.cnblogs.com/GJ-ios/p/6198053.html