首页 > 代码库 > IOS弹出UIViewController小视图
IOS弹出UIViewController小视图
在TestViewController1中弹出TestViewController2
在TestViewController中点击按钮或者什么触发方法里面写入以下代码
TestViewController2 *test2 = [[TestViewController alloc] init];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:test2];
[nav setModalPresentationStyle:UIodalPresentationPageSheet];
[self presentViewController:nav animated:YES completion:nil];
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。