我是 iphone 开发新手。我创建了一个基于视图的应用程序。现在我想要那个视图中的标签栏。标签栏的第一个视图是表格视图,第二个视图是 Web 视图。所有教程都只解释基于标签栏的应用程序。由于我使用的是基于视图的应用程序,我发现它真的很难。如何使用界面生成器来实现它。请指导我。任何示例教程都会更有用。请帮助我。谢谢。
问问题
3499 次
1 回答
4
试试这个。此代码用于以编程方式创建标签栏应用程序。因此,单击按钮它将在视图中打开选项卡栏。
-(IBAction) clkBtn:(id) sender
{
UITabBarController *tabbar1 = [[UITabBarController alloc] init];
firstViewController *first = [[firstViewController alloc] initWithNibName:@"firstViewController" bundle:nil];
UINavigationController *tabItem1 = [[[UINavigationController alloc] initWithRootViewController: first] autorelease];
secondViewController *second = [[secondViewController alloc] initWithNibName:@"secondViewController" bundle:nil];
UINavigationController *tabItem2 = [[[UINavigationController alloc] initWithRootViewController: second] autorelease];
tabbar1.viewControllers = [NSArray arrayWithObjects:tabItem1, tabItem2,nil];
[self.view insertSubview:tabbar1.view belowSubview: first.view];
[self presentModalViewController:tabbar1 animated:YES];
}
谢谢,
祝你好运。
于 2010-06-09T12:51:05.777 回答