Как настроить TableView сечения - iPhone - PullRequest
29 голосов
/ 29 августа 2009

Я знаю, как настроить tableViewCell.

Я видел много приложений, настраивающих ячейку tableView.

Точно так же я хочу настроить заголовок раздела TableView

«Предположим, имя раздела должно быть разным шрифтом, оно имеет разные фоновые изображения и т. Д.»

Возможно ли это как?

В каком методе я должен реализовать код?

1 Ответ

60 голосов
/ 29 августа 2009

Вместо использования обычного метода

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section

Вы хотите реализовать это:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

Как видите, второй возвращает UIView, а не просто строку для текста. Поэтому вы можете настроить свой собственный вид (с метками и т. Д.) И вернуть его.

Вот пример того, как вы можете это сделать (будет реализовано в приведенном выше методе):

// create the parent view that will hold header Label
UIView* customView = [[[UIView alloc] initWithFrame:CGRectMake(10,0,300,60)] autorelease];

// create image object
UIImage *myImage = [UIImage imageNamed:@"someimage.png"];;

// create the label objects
UILabel *headerLabel = [[[UILabel alloc] initWithFrame:CGRectZero] autorelease];
headerLabel.backgroundColor = [UIColor clearColor];
headerLabel.font = [UIFont boldSystemFontOfSize:18];
headerLabel.frame = CGRectMake(70,18,200,20);
headerLabel.text =  @"Some Text";
headerLabel.textColor = [UIColor redColor];

UILabel *detailLabel = [[[UILabel alloc] initWithFrame:CGRectZero] autorelease];
detailLabel.backgroundColor = [UIColor clearColor];
detailLabel.textColor = [UIColor darkGrayColor];
detailLabel.text = @"Some detail text";
detailLabel.font = [UIFont systemFontOfSize:12];
detailLabel.frame = CGRectMake(70,33,230,25);

// create the imageView with the image in it
UIImageView *imageView = [[[UIImageView alloc] initWithImage:myImage] autorelease];
imageView.frame = CGRectMake(10,10,50,50);

[customView addSubview:imageView];
[customView addSubview:headerLabel];
[customView addSubview:detailLabel];

return customView;

Надеюсь, это поможет

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...