我将图像背景设置为这样的tableview:
[self.tableView setBackgroundColor:[UIColor clearColor]];
UIImageView *tableBackgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"myImage"]];
[tableBackgroundView setFrame: self.tableView.frame];
[self.tableView setBackgroundView:tableBackgroundView];
如果我向下移动滚动条,它总是在末尾显示灰线。我试过了
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
但它仍无效。
答案 0 :(得分:0)
请在viewDidLoad中尝试以下行:
[self.tableView setTableFooterView:[[UIView alloc] initWithFrame:CGRectZero]];
这将从tableview中删除额外的分隔符
希望它能起作用......