UITableView
a tableHeaderView
de la propriété. Jeu de à ce point de vue, vous voulez là-haut.
L'utilisation d'un nouveau UIView
comme un récipient, ajouter des étiquettes de texte et une image vue à ce nouveau - UIView
, puis définissez tableHeaderView
de la nouvelle vue.
Par exemple, en UITableViewController
:
-(void)viewDidLoad
{
// ...
UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(XXX, YYY, XXX, YYY)];
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(XXX, YYY, XXX, YYY)];
[headerView addSubview:imageView];
UILabel *labelView = [[UILabel alloc] initWithFrame:CGRectMake(XXX, YYY, XXX, YYY)];
[headerView addSubview:labelView];
self.tableView.tableHeaderView = headerView;
[imageView release];
[labelView release];
[headerView release];
// ...
}