1

テーブルの上の UIImage を私の RootView に喜んで表示させたいと思います。どうすればそれを作ることができますか?

4

1 に答える 1

0

setBackgroundViewメソッドを使用する必要があります。

ちょっとした例:

// my image
UIImage *image = [[[UIImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"my_image" ofType:@"png"]] autorelease];

// an imageView to put the imagen on
UIImageView *imageView = [[[UIImageView alloc] initWithImage:image] autorelease];

// we set the background of the table with the imageView    
[myTable setBackgroundView:imageView];
于 2011-03-09T16:18:21.207 に答える