Translate

顯示具有 tableview 標籤的文章。 顯示所有文章
顯示具有 tableview 標籤的文章。 顯示所有文章

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
    }
    

}