我有两个ViewController-VC1获取用户输入,然后执行到VC2的segue,在此对输入进行汇总。
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
var vc = segue.destination as! vc2
...
performSegue(withIdentifier: "page2", sender: self)
在VC2中,我想使用操作按钮来调用活动视图控制器,但收到消息:
试图在视图不在窗口层次结构中的
上显示
let items = [postImage]
let activityVC = UIActivityViewController(activityItems: [items], applicationActivities: nil)
present(activityVC, animated: true)
通过研究,我发现问题在于VC2不是根视图控制器,但我不知道如何在我的应用程序中对此进行补救/实现。