How to change the Push and Pop animations in a navigation based app

前端 未结 25 1142
清酒与你
清酒与你 2020-11-22 12:46

I have a navigation based application and I want to change the animation of the push and pop animations. How would I do that?

Edit 2018

Ther

25条回答
  •  渐次进展
    2020-11-22 13:18

    Just use:

    ViewController *viewController = [[ViewController alloc] init];
    
    UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
    navController.navigationBarHidden = YES;
    
    [self presentViewController:navController animated:YES completion: nil];
    [viewController release];
    [navController release];
    

提交回复
热议问题