gpt4 book ai didi

ios - 通过导航 Controller 时丢失指向委托(delegate)的指针

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:15:04 25 4
gpt4 key购买 nike

我不完全确定如何解释我的问题,但我会尝试。

所以我一直在努力学习如何使用委托(delegate)和协议(protocol),但遇到了一个问题。我有一个协议(protocol):ButtonInPopOverWasPressed,使用一种方法:

   - (void)buttonWasPressed:(NSString *)buttonValue;

我还有一个主视图 Controller 和一个具有以下属性的自定义弹出框类:

   @property (retain, nonatomic) id <ButtonInPopoverWasPressed> delegate;

在我的主视图 Controller 中,我有一个按钮和一个文本标签。当按下按钮时,它会转到一个正常的弹出窗口。然后我将 segue.destinationViewController 的委托(delegate)指定为主视图 Controller ,如下所示:

   [segue.destinationViewController setDelegate:self];    

然后,当弹出窗口中的按钮被选中时,通过调用主视图监听的协议(protocol)方法,它会显示在主视图的文本标签中:

   [self.delegate buttonWasPressed:sender.currentTitle]; // sends the title of the button pressed to the delegate

一切正常。当我想在按下按钮时将弹出窗口过渡到不同的 View 而不是将信息发送回主视图时,我的问题就开始了。但是当我创建一个导航 Controller 作为弹出窗口并将关系设置为旧的弹出窗口时,一切都崩溃了。

当我分配 segue 的委托(delegate)(如上所示)时,它在另一侧显示为 null,因此我完全失去了将它传递给其他 subview 并将信息返回到主视图的能力。导航 Controller 是否吸收委托(delegate)?如何让委托(delegate)通过 NC 获得实际 View ?

我知道这是协议(protocol)和委托(delegate)的基础知识,但我环顾四周,似乎永远找不到适合我的答案。

最佳答案

试试下面的代码。

    NSArray *temp = [[segue destinationViewController] childViewControllers];
PopoverViewController *popoverViewController = (PopoverViewController)[temp objectAtIndex:0];
popoverViewController.delegate = self;

关于ios - 通过导航 Controller 时丢失指向委托(delegate)的指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11250385/

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