菜鸟教程小白 发表于 2022-12-12 11:40:50

ios - 从外部委托(delegate)推送 View Controller


                                            <p><p>我有两个类; <code>MasterView</code> 这是一个 <code>UIViewController</code> 显示我的 TableView 和 <code>MyClass</code> 由于各种原因充当 TableView 的委托(delegate)和数据源。选择单元格时,我需要推送 ViewController(<code>DetailView</code>)。如何从 MyClass 推送 View ?这就是我真正拥有的一切:</p>

<pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

if (!detailViewController) {
    detailViewController = [ initWithNibName:@&#34;DetailViewController&#34; bundle:nil];
}

//Somehow push detailViewController
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>有几种方法可以做到这一点。我假设您已经将 <code>Masterview</code> 嵌入到 <code>UINavigationController</code> 中,对吗?</p>

<p>您可以通过传递对 <code>Masteriew</code> 的引用来访问它,然后使用:</p>

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

<p>如果您的 <code>Masterview</code> 以某种方式与您的 App 的 Delegate 相关并且您想要访问它,您也可以使用以下行:</p>

<pre><code>MainClass *appDelegate = (MainClass *)[ delegate];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 从外部委托(delegate)推送 ViewController ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/17002499/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/17002499/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 从外部委托(delegate)推送 View Controller