我正在尝试使用UIViewController
功能在其他UIViewcontroller
之上显示addChildViewController
。childViewController是一个tableView,显示在我的上方MainViewController然而我看不到它有的表视图。如果我单独执行childViewController,tableView工作正常,那么我在这里缺少什么。
以下是我添加childVC的方法:
@implementation Test2ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
}
- (IBAction)showChildVC:(id)sender
{
TestTableViewController *tVC = [[TestTableViewController alloc]init];
tVC.view.frame = CGRectMake(50, 50, 200, 200);
[self addChildViewController:tVC];
[self.view addSubview:tVC.view];
[tVC didMoveToParentViewController:self];
}
这是我要展示的childVC:.h
#import <UIKit/UIKit.h>
@interface TestTableViewController : UIViewController<UITableViewDataSource>
{
NSArray *array;
}
@property (weak, nonatomic) IBOutlet UITableView *tableView;
@end
并且:。m
- (void)viewDidLoad
{
[super viewDidLoad];
self.view.backgroundColor = [UIColor grayColor];
array = [NSArray arrayWithObjects:@"One",@"Two",@"Three",@"Four", nil];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [array count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}
cell.textLabel.text = [array objectAtIndex:indexPath.row];
return cell;
}
答案 0 :(得分:1)
我在第二个视图控制器中看到你的表格视图是一个IBOutlet,所以你把它放在故事板中。
然后当你实例化它时,你不能这样做:[[TestTableViewController alloc]init];
你必须这样做:
[storyBoard instantiateViewControllerWithIdentifier:@"tVCStoryBoardID"];