0

我在我的项目中使用 Storyboard。

如果我使用我的h.-File代码将是

IImage * backgroundImage = [UIImage imageNamed:@"bg_image.png"];
UIImageView * backgroundView = [[UIImageView alloc] initWithImage:backgroundImage];
self.tableView.backgroundColor = [UIColor clearColor];
self.tableView.backgroundView = backgroundView;
self.tableView.separatorColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.2];

有没有办法在 Interface Builder 中进行这些自定义?

我猜不会。

所以我的第二个问题是,如果我使用代码,我怎样才能保留我在 Interface Builder 中制作的Static cells和?navigation segues仅仅省略委托方法将是无稽之谈。

那么我可以把所有东西放在一起吗?静态单元格、导航序列和自定义背景?

谢谢!

4

1 回答 1

0

嘿伙计,我在这里发布代码希望它对你有帮助

-(无效)创建表{

myTableView=[[UITableView alloc] initWithFrame:CGRectMake(0,132, 320, 350) style:UITableViewStylePlain];

myTableView.delegate=self;
myTableView.dataSource=self;
myTableView.backgroundColor=[UIColor clearColor];
myTableView.separatorColor=[UIColor clearColor];
myTableView.tag=2;
[self.view addSubview:myTableView];
[myTableView release];

现在只需通过 [self createTable] 调用此方法;

于 2012-04-09T13:56:01.183 回答