eger)section
返回指定的section 的 header 的 title,如果这个section header 有返回view,那么title就不起作用了。 [cpp] view plaincopy
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { if (tableView == tableView_) { if (section == 0) { return @"title 1"; } else if (section == 1) { return @"title 2"; } else { return nil; } } else { return nil;
上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] 下一页
|