我知道还有其他主题,但我似乎无法找到如何实现它。
我的应用只使用了xib,没有使用故事板。
我有一个带有项目列表的模态,我需要显示另一个模态,其中包含所选项目的详细信息。
发现错误是模态详细信息正在模态列表下方打开,需要新用户点击
在代码下面打开项目列表
let modalViewController = DependenteListaViewController()
modalViewController.modalPresentationStyle = .overCurrentContext
present(modalViewController, animated: true, completion: nil)
在代码下面打开项目明细
let modalViewController = DetailViewController ()
modalViewController.modalPresentationStyle = .currentContext
present (modalViewController, animated: false, completion: nil)
调用另一个模态的模态的正确方法是什么?