关于tableview的分割线隐藏问题

隐藏多余的分割线
swift:
self.tableView?.tableFooterView = UIView()
oc :
self.tableView.tableFooterView = [[UIView alloc] init];


隐藏全部的分割线
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
 
posted @ 2016-07-04 15:30  我叫小小虎  阅读(406)  评论(0)    收藏  举报