我不确定有没有想要,但似乎他们使用自定义剖面视图。您可以通过实现 UITableViewDelegate "viewForHeaderInSection" 来获得此结果
使用示例:
-(UIView*) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
//Header image have the same heigth that section
UIImageView *letterUIImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:<header image>]];
UILabel *letterUILabel = [[[UILabel alloc] initWithFrame:CGRectMake(5, 3, 300, 18)] autorelease];
[letterUIImageView setAlpha:0.5];
[letterUILabel setTextColor:[UIColor whiteColor]];
[letterUILabel setBackgroundColor:[UIColor clearColor]];
[letterUILabel setFont:[UIFont fontWithName: @"HelveticaNeue-Bold" size: 14.0f]];
[letterUIImageView addSubview:letterUILabel];
[letterUILabel setText:[self titleForHeaderInSection:section]];
return letterUIImageView;
}