如何爲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 2012-04-08 21:03:31
我的疑問是,你把一個背景顏色的細胞,這些覆蓋背景。 – WhiteTiger 2012-04-08 21:12:32
我的細胞是默認我沒有改變顏色我必須改變它清除顏色或默認是清晰的? – Youstanzr 2012-04-08 21:20:16