我有tabbarcontroller的问题。我正在使用storyboard和我在tabbarcontroller和viewcontroller之间使用导航控制器。我也有登录页面。从登录页面,我想直接转到viewcontroller这是2.tabbarcontroller ..但是,当我这样做时,我看不到tabbar控制器..什么可能是问题?你的建议是什么?
self.tabBarController = [[UITabBarController alloc] init];
UIImage* tabBarBackground = [UIImage imageNamed:@"Tab_bar_bkg.png"];
[[UITabBar appearance] setBackgroundImage:tabBarBackground];
[[UITabBarItem appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor], UITextAttributeTextColor,
[NSValue valueWithUIOffset:UIOffsetMake(0, 1)], UITextAttributeTextShadowOffset,
[UIFont fontWithName:@"Helvetica" size:0.0], UITextAttributeFont,
nil] forState:UIControlStateNormal];
提前谢谢..
答案 0 :(得分:0)
最后我找到了解决方法。问题不是使用它:
[self dismissModalViewControllerAnimated:YES];
我用过那个:
[self presentModalViewController:controller animated:YES]
非常感谢你的帮助......