UITableViewController
の画像を設定するにはどうすればよいですか?UITableViewController背景画像
は、私は多くのものを使用しているが、それは
UIImageView* bgView = [[[UIImageView alloc] initWithImage:
[UIImage imageNamed:@"Default.png"]] autorelease];
[tableView.backgroundView addSubview:bgView];
そしてこの
[[self view] setAutoresizesSubviews:NO];
UIView *backgroundView = [[UIView alloc] initWithFrame:self.view.frame];
backgroundView.backgroundColor =
[UIColor colorWithPatternImage:
[UIImage imageNamed:@"Default.png"]];
self.tableView.backgroundView = backgroundView;
self.tableView.backgroundColor = [UIColor clearColor];
[backgroundView release];
そして、それの
self.navigationController.view.backgroundColor =
[UIColor colorWithPatternImage:
[UIImage imageNamed:@"myImage.png"]];
self.tableView.backgroundColor = [UIColor clearColor];
なしで働いていた背景として画像を設定するために私を助けていません私のために。
を、私は私のプロジェクトでそれをテストしてきたし、それは残念ながら – Youstanzr
動作しません。私の疑いは、細胞に背景色をつけて、背景を覆うことです。 – WhiteTiger
私のセルはデフォルトです私は色を変更していません私は色をクリアするためにそれを変更する必要がありますか、デフォルトはクリアですか? – Youstanzr