presentViewController 跳转 全屏 增加导航栏

YiJiAdviseViewController *yiji= [self.storyboard instantiateViewControllerWithIdentifier:@“yiJiAdviseViewController”];

UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:yiji]; //增加导航栏
//nav.modalPresentationStyle = UIModalPresentationFormSheet;
nav.modalPresentationStyle = 0; //全屏
[self presentViewController:nav animated:YES completion:NULL];

发布了138 篇原创文章 · 获赞 83 · 访问量 88万+

猜你喜欢

转载自blog.csdn.net/kunga0814/article/details/105301939