我已經看了整個節目,但無法找到如何簡單地定義我自己的節標題。到目前爲止,我已經試過這個。如何在UITableView中爲節添加標題?
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 20;
}
從我讀這是兩個代表你需要添加自己的冠軍。所以我woundering TableView中發生的事情:viewForHeaderInSection:
我已經試過
if (section == 0){
return @"header one";
}
但這並沒有削減芥末..任何幫助將不勝感激。
我想補充一個側面說明:您返回一個字符串while viewForHeaderInSection假設返回 - (UIView *) – Saran