菜鸟教程小白 发表于 2022-12-13 15:59:17

c# - 从另一个 View Xamarin.iOS 返回数据


                                            <p><p>我目前正在尝试做的事情听起来很简单,但是我没有看到一个很好的例子,也没有找到一个。 </p>

<p>我目前正在通过以下方式向导航 Controller 添加 View :</p>

<pre><code>ViewControllers.CompaniesViewController companiesViewCtrl = this.Storyboard.InstantiateViewController (&#34;companySelectView&#34;) as ViewControllers.CompaniesViewController;
this.NavigationController.PushViewController(companiesViewCtrl, true);
</code></pre>

<p>它会弹出一个包含公司列表的 View ,我需要做的就是一旦用户选择了一家公司,我将存储一些信息(我已经这样做了),但将其返回到之前的 View 并做点什么,也许举办一个事件。谁能指出我正确的方向如何做到这一点?</p>

<p>谢谢:)</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>最简单的解决方案是向 <code>CompaniesViewController</code> 添加一个事件,并在用户选择公司时引发它。推送 <code>companiesViewCtrl</code> 的导航 Controller 可以订阅该事件,并在选择公司时收到通知。</p>

<pre><code>class CompaniesViewController
{
    public event Action&lt;Company&gt; CompanySelected;

    public override void RowSelected (UITableView tableView, NSIndexPath indexPath)
    {
      //Raise CompanySelected event if it isn&#39;t null and pass selected company.
    }
}
</code></pre>

<p>您现在要做的就是在推送 Controller 之前订阅 CompanySelected 事件。</p></p>
                                   
                                                <p style="font-size: 20px;">关于c# - 从另一个 ViewXamarin.iOS 返回数据,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36778335/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36778335/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: c# - 从另一个 View Xamarin.iOS 返回数据