0

我想在 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”中的代码不起作用。

我能做些什么?

4

1 回答 1

1

好吧,将一个普通UIViewController的 aUIView作为 Nib 的根,然后放一个UITableView. 我的回答是基于你需要有按钮UIView

于 2012-05-07T09:12:22.103 回答