菜鸟教程小白 发表于 2022-12-13 14:27:56

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


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

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

<pre><code>   - (void)buttonWasPressed:(NSString *)buttonValue;
</code></pre>

<p>我还有一个主视图 Controller 和一个带有属性的自定义弹出框类:</p>

<pre><code>   @property (retain, nonatomic) id &lt;ButtonInPopoverWasPressed&gt; delegate;
</code></pre>

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

<pre><code>   ;   
</code></pre>

<p>Then when a button from the popover is selected it is displayed in the main view's text label by calling a protocol method that the main view listens for:</p>

<pre><code>   ; // sends the title of the button pressed to the delegate
</code></pre>

<p>这一切都很好。当我想在按下按钮而不是将信息发送回主视图时将弹出框转换到不同的 View 时,我的问题就开始了。但是当我创建一个导航 Controller 作为弹出框并将关系设置为旧弹出框时,一切都崩溃了。</p>

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

<p>我知道这是协议(protocol)和委托(delegate)的基础知识,但我环顾四周,似乎永远找不到适合我的答案。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>试试下面的代码。 </p>

<pre><code>    NSArray *temp = [ childViewControllers];
    PopoverViewController *popoverViewController = (PopoverViewController);
    popoverViewController.delegate = self;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 通过导航 Controller 时丢失指向委托(delegate)的指针,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/11250385/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/11250385/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 通过导航 Controller 时丢失指向委托(delegate)的指针