1

我在我的应用程序中使用 RESideMenu。但我需要在 RESideMenu 之前添加登录和注册视图控制器。

有可能吗,如果是,那我该怎么做?

提前致谢。

4

2 回答 2

0

有很多方法可以做到这一点。最常见的是您有一个 loginView 控制器,然后在应用程序委托中您可以在应用程序委托中编写如下内容:

if([[NSUserDefaults standardUserDefaults] valueForKey:@"AlreadyLogin"])
        {
      // So, here user already login then set your root view controller, let's say `SecondViewController``
      SecondViewController *secondViewController = [storyBoard instantiateViewControllerWithIdentifier:@"SecondViewController"];
      // then set your root view controller 
      self.window.rootViewController = secondViewController;
    }
else
{
     // It means you need to your root view controller is your login view controller, so let's create it 
     LoginViewController  *loginViewController= [storyBoard instantiateViewControllerWithIdentifier:@"LoginViewController"];
     self.window.rootViewController = loginViewController;
}

信用:如果用户已经登录,则跳过视图

于 2015-05-11T23:50:06.353 回答
0

是的,很有可能。

解决方案 A:

成功登录/注册后,执行:

[UIApplication sharedApplication].window.rootViewController = [[RESideMenu alloc] init...];

解决方案 B:

将您的登录/注册视图控制器放在 的主要内容部分RESideMenu,并禁用两个侧边菜单,直到用户登录。

解决方案 C:

嵌入RESideMenuaUINavigationController并可选择隐藏导航栏。

有关更多信息,我建议研究“视图控制器包含”,因为这是 , 和其他类型的“容器”视图控制器使用的RESideMenu模式UINavigationController

我拼凑了一个解决方案 C 的快速示例,它似乎工作正常:

@implementation LoginViewController

- (void)viewDidLoad {
    UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    button.frame = CGRectMake(50, 50, 100, 100);
    [button setTitle:@"Login" forState:UIControlStateNormal];
    [button addTarget:self action:@selector(goToRESideMenu) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:button];

    self.navigationController.navigationBarHidden = YES;
}

- (void)goToRESideMenu {
    UIViewController *redViewController = [[UIViewController alloc] init];
    redViewController.view.backgroundColor = [UIColor redColor];
    UIViewController *greenViewController = [[UIViewController alloc] init];
    greenViewController.view.backgroundColor = [UIColor greenColor];
    UIViewController *blueViewController = [[UIViewController alloc] init];
    blueViewController.view.backgroundColor = [UIColor blueColor];

    RESideMenu *sideMenu = [[RESideMenu alloc] initWithContentViewController:redViewController
                                                      leftMenuViewController:greenViewController
                                                     rightMenuViewController:blueViewController];
    [self.navigationController pushViewController:sideMenu animated:YES];
}

@end

结果如下所示:

演示

于 2015-05-12T00:22:02.197 回答