类似效果
主要代码
//被跳转的控制器
UIViewController * vc = [UIViewController currentViewController];
vc.view.window.rootViewController.modalPresentationStyle = UIModalPresentationCurrentContext;
[vc presentViewController:controller animated:NO completion:nil];
vc.view.window.rootViewController.modalPresentationStyle = UIModalPresentationFullScreen;
参考链接:
http://blog.csdn.net/vbirdbest/article/details/51086543