我正在嘗試獲取UITableView滾動的UIView(如果啓用了滾動)。通常情況下,背景是白色的,如果您將UITableView從邊界中移出,則會看到背景。我試圖將此背景設置爲blackColor的UIColor。我似乎無法找到合適的標籤。我在我的UIViewController中試過以下代碼:找到UITableView滾動的UIView
- (void)loadView
{
[super loadView];
UITableView *aTableView =
[[[UITableView alloc]
initWithFrame:self.view.bounds
style:UITableViewStylePlain] autorelease];
[aTableView setScrollEnabled:YES];
[self.view setBackgroundColor:[UIColor blackColor]];
[self.view addSubview:aTableView];
self.tableView = aTableView;
}
顏色仍然保持白色。似乎我打錯了UIView。
有什麼想法?謝謝。
嘿羅傑,我不想讓blackColor滲入我的UITableView。我想要它的正常樣式。我只想看看錶格滾動出界時的背景。 – Coocoo4Cocoa 2009-04-20 15:30:06