1
我使用以下代碼創建了自定義部分標題,但沒有顯示紅色標籤。自定義表部分標題不起作用
- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UIView *headerView = [[[UIView alloc] init] autorelease];
UILabel * label1 = [[UILabel alloc] init];
label1.textColor = [UIColor redColor];
[headerView addSubview:label1];
return headerView;
}