ios - 访问另一个 View 的元素(iOS - 标签栏 Controller )
<p><p>我在标签栏 Controller 中有两个标签用于用户注册事件。一旦用户单击 <strong>“第二个选项卡”</strong> 中的注册按钮,我需要从 <strong>“第一个选项卡”</strong> 中获取一些 UITextFields 的值。 </p>
<p>那么,是否可以直接访问另一个 View 中的文本字段?或者我还能做些什么来解决?</p>
<p>使用委托(delegate)/通知似乎是另一种方式,但浏览了与委托(delegate)相关的所有文章/问题,但无法弄清楚如何在我的代码中实现它。如果是这样,请您分享一篇关于如何实现委托(delegate)的好文章。</p>
<p>提前致谢。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您可以通过标签栏内viewControllers的属性self.tabBarController访问其他 ViewController 。</p>
<p>在注册按钮的 action 方法中,在 secondTab 的 ViewController 中,这样做:</p>
<pre><code>UIViewController1 *myViewController = ;
something = myViewController.textField;
</code></pre>
<p>请注意,索引“0”是因为我假设这确实是您要访问的第一个选项卡。如果您愿意,可以更改为另一个索引。</p>
<p>如果这是您想要的,请提供一些反馈。</p></p>
<p style="font-size: 20px;">关于ios - 访问另一个 View 的元素(iOS - 标签栏 Controller ),我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/17924995/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/17924995/
</a>
</p>
页:
[1]