gpt4 book ai didi

ios - 当呈现的 View Controller 被取消时调用呈现 View Controller 的 viewWillAppear 的问题

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:06:02 24 4
gpt4 key购买 nike

我目前有一个基本 View Controller 说 AVC,它在当前上下文中呈现另一个 View Controller 说 BVC,如下所示:

let bvc: BVC = sb.instantiateViewControllerWithIdentifier("BVC") as! BVC
bvc.modalPresentationStyle = UIModalPresentationStyle.OverCurrentContext
self.presentViewController(bvc, animated: true, completion: nil)

然后我在 BVC 中设置一个值并在关闭时使用相同的值在 AVC 的 viewWillAppear 中执行一个功能。但是,我注意到在呈现 OverCurrentContext 时,在关闭时,不会调用 viewWillAppear。

我该如何解决这个问题?我需要一个半透明的呈现 View ,因此需要使用 OverCurrentContext。

谢谢!

最佳答案

巴拉,

两种方式,

方式一

您可以为此使用委托(delegate)和协议(protocol):)

在BVC中声明一个协议(protocol),在AVC中确认。当您在 BVC 中完成后,调用协议(protocol)方法并让 AVC 解除 BVC,这样您也可以将数据从 BVC 传递到 AVC。

示例:

在 BVC 中声明如下所示的协议(protocol)

protocol letsCallParent{
func amDoneHere(dataIwantToPass : String)
}

在 BVC 中声明一个属性来保存确认此协议(protocol)的 View Controller 的引用

var myParent : letsCallParent?

当你完成 BVC 并且你必须解雇自己调用委托(delegate)中的方法并传递你想要传递的数据时:)现在最好的编码习惯是期望父级(AVC)解雇 BVC 而不是对自己调用 dismissViewController :)

if let parent = myParent {
parent.amDoneHere("Hi am Done here")
}

在 AVC 中使用

确认协议(protocol)
class AVC: UIViewController,letsCallParent{

并在呈现之前实例化 BVC 之后,将自身指定为 BVC 的 myParent :)

let bvc: BVC = sb.instantiateViewControllerWithIdentifier("BVC") as! BVC
bvc.myParent = self

最后实现协议(protocol)方法:)

func amDoneHere(dataIwantToPass: String) {
print("\(dataIwantToPass)")
//if you want to dismiss BVC call
//if you have pushed bvc
//self.navigationController?.popToViewController(self, animated: true)
//if you have presented
//self.dismissViewControllerAnimated(true, completion: nil)
}

方法 2

使用 unwind segue :) 使用 unwind segue 将消除编写委托(delegate)和协议(protocol)的需要 :) 还为父 View Controller 提供了访问 subview Controller 的机会 :)一旦您有权访问 BVC 的子 VC,您就可以从中读取数据:)

示例:

声明一个 unwind segue :)如果您希望 BVC 在 AVC 被取消时调用 AVC 的方法,请在 AVC 中声明一个 unwind segue 方法 :)

@IBAction func cancelChildVC(segue:UIStoryboardSegue) {
let childVC : SecondViewController = segue.sourceViewController as! SecondViewController
print(childVC.name)
self.dismissViewControllerAnimated(true, completion: nil)
}

方法的签名是固定的 :) 它必须是一个@IBAction 并且它必须接受 segue 作为参数 :)

仅在声明此方法后:)转到您的 Storyboard并选择 BVC 并按住控件并从按钮或 BVC 中的任何其他 View 拖动以关闭它,到 BVC 中的退出选项:)

请查看下面提供的 gif 以获得清晰的理解:)

enter image description here

如果操作正确,您将看到您在 AVC 中声明的方法作为弹出选项出现 :) 选择它 :) 就这样 :) 每当您点击按钮或从中拖动的 View 时控制退出,你的 AVC 中的方法被调用:)

在 AVC 的方法中,您可以访问 BVC 实例,因为现在您可以访问转场实例 :) 记住直接转场的 prepareForSegue 方法,这与展开转场的方法类似 :)

let childVC : SecondViewController = segue.sourceViewController as! SecondViewController
print(childVC.name)
self.dismissViewControllerAnimated(true, completion: nil)

一旦您有权访问 BVC 访问其数据,请注意“segue.sourceViewController”的用法:)

希望我的回答对您有所帮助:)

关于ios - 当呈现的 View Controller 被取消时调用呈现 View Controller 的 viewWillAppear 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36786242/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com