- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
if (section == 0 ) {
return nil;
}
return [super tableView:tableView titleForHeaderInSection:section];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if (section == 0 ) {
return 0;
}
else
{
return [super tableView:tableView numberOfRowsInSection:section]; //keeps
}
}
沒有留言:
張貼留言