1

在我的AppDelegate.m

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    

    NSUserDefaults * defaults = [NSUserDefaults standardUserDefaults];
    //Get uer ID from user defaults
    NSString *userid = [defaults objectForKey:@"UserId"];

    if([userid isEqualToString:@""]){

        login = [[LoginViewController alloc] initWithNibName:@"LoginViewController" bundle:nil];
        [window addSubview:login.view];


    } else {

        [window addSubview:[rootTabBarController view]];

    }

    [self.window makeKeyAndVisible];
    return YES;
}

登录成功后我有这个代码

 NSUserDefaults * defaults = [NSUserDefaults standardUserDefaults];
 [defaults setObject:serverOutput forKey:@"UserId"];
 //show tabbar app
 NewClassMoonAppDelegate * appsDelegate =[[UIApplication sharedApplication] delegate];
 [appsDelegate.window addSubview:[appsDelegate.rootTabBarController view]];

所以问题是我如何重定向到特定选项卡[Home tab FOR EXAMBLE]

4

3 回答 3

1
[appDelegate.rootTabBarController setSelectedIndex:GiveIndexOfTab]; // give index of home tab for ex. 0
于 2012-11-05T11:08:21.667 回答
1

如果要跳转到特定选项卡而不拦截tabBar,而不是第一个默认选项卡

利用

[appsDelegate.rootTabBarController setSelectedIndex:2]; // 2 is a pseudo index i have assigned
于 2012-11-05T11:11:15.560 回答
0

对于标签栏控制器,

SelectedIndex 属性可帮助您管理其行为。

利用

setSelectedIndex:Index

方法。它会解决你的目的。

谢谢。

于 2012-11-05T11:37:04.623 回答