单击下一个按钮(在购物车视图中,由于显示的视图,图像中隐藏了该图像),我会以模态方式呈现视图。在iPhone中,它看起来像......
点击下一个按钮以模态方式显示视图时,这是编写的代码......
let vc = PresentedUserDetailsViewController()
vc.modalPresentationStyle = .custom
present(vc, animated: true, completion: nil)
在呈现视图的PresentedUserDetailsViewController
中,我初始化了以下内容......
let menuHeight = UIScreen.main.bounds.height / 2
init() {
super.init(nibName: nil, bundle: nil)
modalPresentationStyle = .custom
transitioningDelegate = self
}
但是当我在iPad Air 2模拟器中运行时,视图就像这样......
应该怎么做才能使呈现的视图显示在iPhone中??