John-Lluch / SWRevealViewController

A UIViewController subclass for presenting side view controllers inspired on the FaceBook and Wunderlist apps, done right !
Other
4.52k stars 989 forks source link

在侧滑菜单中怎么跳到其他UIViewController #701

Open xmlhttp opened 7 years ago

xmlhttp commented 7 years ago

如题

xmlhttp commented 7 years ago

How does from the SWRevealViewController to another UIViewController?

jay10447 commented 7 years ago

這是StoryBoard的,其他的也差不多如此

UIStoryboard main = [UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]]; UIViewController story = [main instantiateViewControllerWithIdentifier:@"MainVC"];

navController1 = [[UINavigationController alloc] initWithRootViewController:story]; [self.revealViewController setFrontViewController:navController1 animated:NO];

[self.revealViewController revealToggleAnimated:YES];

重點在於

[self.revealViewController setFrontViewController:navController1 animated:NO];

[self.revealViewController revealToggleAnimated:YES];

這兩句