tableview行数比较少的情况,会导致空的地方也还是会有cell线
tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];根据需求去掉某些行的线
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{//第0行的cell线去掉if(indexPath.row == 0){ cell.separatorInset = UIEdgeInsetsMake(0,SCREEN_WIDTH, 0, 0); }}新闻热点
疑难解答