首先对标题感到抱歉。实际上我不知道如何为这种情况提供适当的标题。
我有一个登录视图。一旦身份验证成功,下一个视图是一个带有四个选项卡的选项卡栏视图。我创建如下:
UIViewController *firstTab = [[SAHomeView_iPad alloc]initWithNibName:@"SAHomeview_iPad" bundle:nil];
firstTab.tabBarItem.image = [UIImage imageNamed:@"Home.png"];
UIViewController *secondTab = [[SAMenuView_iPad alloc]initWithNibName:@"SAMenuView_iPad" bundle:nil];
secondTab.tabBarItem.image = [UIImage imageNamed:@"Menu.png"];
UIViewController *thirdTab = [[SAGraphView_iPad alloc]initWithNibName:@"SAGraphView_iPad" bundle:nil];
thirdTab.tabBarItem.image = [UIImage imageNamed:@"Graph.png"];
UIViewController *fourthTab = [[SAAboutView_iPad alloc]initWithNibName:@"SAAboutView_iPad" bundle:nil];
fourthTab.tabBarItem.image = [UIImage imageNamed:@"info.png"];
UITabBarController *tabBarController = [[UITabBarController alloc] init];
tabBarController.viewControllers = [NSArray arrayWithObjects:firstTab, secondTab,thirdTab,fourthTab, nil];
SAAppDelegate *delegate = [UIApplication sharedApplication].delegate;
delegate.window.rootViewController = tabBarController;
现在在第三个选项卡中,我添加了一个日历按钮,按下该按钮将提供一个日历视图。我将此日历视图添加为第三个选项卡中的子视图。
现在,一旦用户登录,主页选项卡中就会有一个日历按钮。一旦用户点击日历按钮,他应该移动到日历视图。这个日历视图实际上是作为子视图添加到第三个选项卡中的。
谁能帮我解决这个问题。提前谢谢了。