我想以编程方式为我的应用程序创建uitabbarviewcontroller。
在那个uitabbarcontroller中,我想添加2个按钮,即“显示日志”,“我的联系人”。
点击“ShowLog”按钮时,我想推送新视图,“我的联系人”按钮也是如此
我不知道该怎么做
请帮助我下面是我试过的代码
myTabBarController = [[UITabBarController alloc] init];
myTabBarController.view.frame = CGRectMake(0, 0, 320, 460);
MyCallLogViewController *testVC = [[MyCallLogViewController alloc] init];
TemplateViewController *otherVC = [[TemplateViewController alloc] init];
NSArray* controllers = [NSArray arrayWithObjects:testVC, otherVC, nil];
myTabBarController.viewControllers = controllers;
// Add the tab bar controller's current view as a subview of the window
[self.view addSubview:myTabBarController.view];