[iOS] iPad の場合、UITableView の背景を透明にするには setBackgroundView:nil が必要

2011年2月26日土曜日 | Published in | 0 コメント

このエントリーをはてなブックマークに追加

元ネタ。
setBackgroundView:nil


self.tableView.backgroundColor = [UIColor clearColor];
iPhone の時にやっていた上記が効かず困っていたのだが、そういことか。

- (void)viewDidLoad {
    [super viewDidLoad];

 [self.tableView setBackgroundView:nil];
 [self.tableView setBackgroundView:[[[UIView alloc] init] autorelease]];
 self.tableView.backgroundColor = [UIColor clearColor];
透明になった。

Responses

Leave a Response

人気の投稿(過去 30日間)