zl程序教程

您现在的位置是:首页 >  移动开发

当前栏目

iOS(swift) present

ios swift present
2023-09-14 09:04:15 时间

1.弹出后后面的视图不变小 .overFullScreen

 let vc = SwitchMapPresentVC()
 vc.modalTransitionStyle = .crossDissolve //这句代码定义转场动画的类型
 vc.modalPresentationStyle = .overFullScreen //默认后面的视图会变小,加上这句后就不会了变了
 self.present(vc, animated: false, completion: nil)

在SwitchMapPresentVC中

 self.dismiss(animated: true, completion: nil)