UITableView
如果您单击我的某个按钮,我试图揭示一个UIViewController
。
我以为我可以简单地写:
- (void)viewDidLoad
{
[super viewDidLoad];
table.hidden=YES;
}
-(IBAction)task:(id)sender{
table.hidden = NO;
}
这似乎行不通。我已将 tableView 添加到 Xib 并连接它。有人知道怎么做吗?
UITableView
如果您单击我的某个按钮,我试图揭示一个UIViewController
。
我以为我可以简单地写:
- (void)viewDidLoad
{
[super viewDidLoad];
table.hidden=YES;
}
-(IBAction)task:(id)sender{
table.hidden = NO;
}
这似乎行不通。我已将 tableView 添加到 Xib 并连接它。有人知道怎么做吗?