我想刪除這些我不使用但不知道如何的tablecells。我已經指定了我想要的單元格數量,但這些不需要的單元格一直在顯示,就像這樣;不需要的Tablecells顯示
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 3;
}
人知道如何解決這個問題?在此先感謝
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
if ([self numberOfSectionsInTableView:tableView] == (section+1))
{
return [UIView new];
}
return nil;
但無濟於事,因爲我得到一個sigabrt錯誤..爲什麼?
你想要什麼? –
[在iphone sdk中消除UITableView下的額外分隔符?](http:// stackoverflow。com/questions/1369831/elimination-extra-separators-below-uitableview-in-iphone-sdk) – jrturton
謝謝jrturton,這的確是同樣的問題,謝謝你指點我。 (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section if([self numberOfSectionsInTableView:tableView] ==(section + 1)) return [UIView new]; } return nil;' – DanKiiing