美文网首页
iOS开发小问题

iOS开发小问题

作者: 山是水的故事 | 来源:发表于2017-04-13 10:54 被阅读11次
  1. UITableView中最后一个section的最后一个cell出现了分割线。(UITableViewStylePlain,UITableViewCellSeparatorStyleSingleLine)
    解决办法:
    tableFooterView设置为一个0.1高度的UIView
_tableView.tableFooterView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, kScreenWidth, 0.1)];

相关文章

网友评论

      本文标题:iOS开发小问题

      本文链接:https://www.haomeiwen.com/subject/eaqbattx.html