1. 判断是否跳转
- (BOOL)shouldPerformSegueWithIdentifier:(NSString*)identifier sender:(nullableid)sender NS_AVAILABLE_IOS(6_0);
2.跳转方法
- (void)performSegueWithIdentifier:(NSString *)identifier sender:(nullable id)sender NS_AVAILABLE_IOS(5_0);
3跳转改变方向或传值
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(nullable id)sender NS_AVAILABLE_IOS(5_0);
4代码跳转
BaseTabBarViewController *tabBarVC = [[self storyboard] instantiateViewControllerWithIdentifier:@“BaseTabBarViewController”];
[self presentViewController:tabBarVC animated:YES completion:^{
}];