我想在 UIView 中加载 UITableViewController 因为我想更改按钮单击时的视图(如 UITabBar 但使用我自己的按钮)。我正在使用情节提要并定义了一个具有自定义类“InitialTableViewController”和标识符“InitialView”的 TableViewController。
我的代码如下所示:
#import "MyViewController.h"
#import "InitialTableViewController.h"
@interface MyViewController ()
@end
@implementation MyViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
InitialTableViewController *tableControl = [self.storyboard instantiateViewControllerWithIdentifier:@"InitialView"];
[[self view] addSubview:[tableControl view]];
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
}
@end
视图开始,我可以看到我的表,但“InitialTableViewController”中的代码不起作用。
我能做些什么?