Translate

2015年11月10日 星期二

taleview section hidden



- (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
    }
    

}

沒有留言:

張貼留言