2

テーブル ビューで、ヘッダーを作成しました。

tableViewのヘッダーに画像またはタイトルを設定する正しい方法は何ですか? 私は何をする必要がありますか?

ティア

4

5 に答える 5

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

    UIImageView *imgVew = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"header"]];
    return imgVew;
}

これにより、テーブルビューセクションヘッダーの画像背景を設定できます!

于 2012-08-06T06:59:27.217 に答える
3

メソッドでは

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

を作成し、(画像用)、(タイトル用)UIViewなどの他のビューを追加して、最後に を返す必要があります。UIImageViewUILabelUIView

于 2012-08-06T07:02:00.147 に答える
0

このコードを使用してください:

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

   UIImage *myImage = [UIImage imageNamed:@"loginHeader.png"];
   UIImageView *imageView = [[[UIImageView alloc] initWithImage:myImage] autorelease];
   imageView.frame = CGRectMake(10,10,300,100);

   return imageView;

}
于 2012-08-06T07:45:35.773 に答える
0
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{

    UIImage * image = [UIImage imageNamed:@"logo-big.png"];

    UIImageView * imgview = [[UIImageView alloc]initWithImage:image];

    imgview.frame = CGRectMake(0, 0, 200, 200);

    imgview.backgroundColor = [UIColor blackColor];
    return imgview;


}
于 2016-07-29T06:59:22.733 に答える