ios tableview section的運用

一、主要是分割開來code

//返回幾個section
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 2;
}

//設置標題  能夠根據section的值來設置 第一個爲0
-(NSString*)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
    return @" ";
}

//每一個section有多少個cell
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    if(section==0){
        return 3;
    }else{
        return 1;
    }
}
相關文章
相關標籤/搜索