iPhone在Tab键应用程序模板上的TabBarController之前创建视图

时间:2011-08-04 10:03:05

标签: iphone objective-c ios cocoa-touch ios4

我很擅长使用xcode和objective c,但只能使用模板。

我希望我的应用程序在到达我设置的标签栏控制器之前加载到视图以进行登录。

我相信这可以在app delegate的'didfinishlaunchingwithoptions'部分完成,但之后我不知道登录成功后我怎么能再次显示标签控制器。

我将不胜感激任何帮助:)

2 个答案:

答案 0 :(得分:0)

使用modal views。 示例示例here

答案 1 :(得分:0)

我想你想要这样的东西

    LoginViewController *loginViewController = [[[LoginViewController alloc] initWithNibName:@"LoginViewController" bundle:nil] autorelease];
    [tabBarController presentModalViewController:loginViewController animated:YES];

内部didfinishlaunchingwithoptions