2012/04/02

[iOS][Objective-C]UITableView背景を変更する

UITableViewControllerを使って、UITableViewの背景を変更する方法について。

- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {

self.navigationItem.titleView.backgroundColor = [UIColor redColor];

}
return self;
}
これは、便利なので、今後も使用すると思いました。

0 コメント:

コメントを投稿