菜鸟教程小白 发表于 2022-12-12 12:00:48

ios - 在 didSelectRowAtIndexPath 上关闭 ios 中的弹出框


                                            <p><p>我有一个弹出框,它在导航栏按钮上弹出,并且该弹出框包含一个表格 View 。
如何在tableview的<code>didSelectRowAtIndexPath</code>方法上关闭ios中的popover?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果您的意思是 tableView 在该弹出框内,并且您的弹出框 Controller 是这样实例化的:</p>

<p><strong>Objective-C</strong></p>

<p>在包含的 Controller 中,将它放在它的顶部:</p>

<pre><code>@property (nonatomic,strong) UIPopoverController *popOver;

//this is the content of the popover
MyTableVC *tableVC = ;
//this is the navigation controller of your tableViewController
UINavigationController *popNav = [ initWithRootViewController:tableVC];
//this is you popover
self.popOver =[ initWithContentViewController:popNav];
</code></pre>

<p>然后您必须在创建弹出框的 viewController 中将其关闭,在本例中为 popNav。</p>

<p>所以在你的 MyTableVC 类中你需要在 didSelectRowAtIndexPath 方法中调用这个方法:</p>

<pre><code>;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 didSelectRowAtIndexPath 上关闭 ios 中的弹出框,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/39305330/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/39305330/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 didSelectRowAtIndexPath 上关闭 ios 中的弹出框