我的视图包含一个注册按钮,该按钮以模态显示注册视图,我希望此注册位于uinavigationcontroller中,如何在uinavcontroller中添加此视图。

最佳答案

只需让您按钮的操作方法像这样显示导航控制器即可:

-(IBAction)showSignup:(id)sender {
    MyViewController *signupController = [[MyViewController alloc] init];
    //Other setup for signupController;

    UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:signupController];

    //Set modal presentation and transition styles, if needed.

    [self presentModalViewController:navController animated:YES];
}

关于objective-c - 如何在uinavcontroller中添加显示为模式的 View ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11505624/

10-12 01:33