如何隱藏空UITableCells?我的TableCell包含一個背景,所以我想這行代碼如何隱藏空的UITablecells?
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 100)];
view.backgroundColor = [UIColor whiteColor];
return view;
}
但它沒有工作(因爲我uitablecell背景)
背景:
[tabelView setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"table.png"]]];
我不明白,如果他們是空的,爲什麼會存在表細胞。當你的數據源被要求輸入單元數時,爲什麼不只是返回你需要的「非空」數呢? –
你是什麼意思的「隱藏」?你想在你的表(即中間)間隙或只在一個表(即最底層的細胞)的最後一個單元是空的? –
我的意思是分開的uitablecells行,我怎麼可以隱藏它們 – Jones