菜鸟教程小白 发表于 2022-12-13 01:43:48

c# - 使用正确的构造函数创建 View Controller 的实例


                                            <p><p>在教程<a href="http://developer.xamarin.com/recipes/ios/content_controls/split_view/use_split_view_to_show_two_controllers/" rel="noreferrer noopener nofollow">Use Split View to Show two Controllers</a>你以这种方式创建 ViewController 的实例:</p>

<pre><code>masterView = new MasterViewController ();
</code></pre>

<p>因此你需要这样的构造函数:</p>

<pre><code>public MasterViewController () : base()
</code></pre>

<p>我目前的问题是我的 <code>MasterViewController</code> 没有加载。如果我运行该应用程序,则会显示一个空表,但我的表中应该有一些自定义和数据。</p>

<p>现在我正在使用自定义单元格。在教程<a href="http://developer.xamarin.com/guides/ios/user_interface/tables/part_2_-_populating_a_table_with_data/" rel="noreferrer noopener nofollow">Part 2 - Populating a Table with Data</a>写得很清楚:</p>

<blockquote>
<p>Be aware, when using the new reuse pattern with a custom cell class,
you need to implement the constructor that takes an IntPtr, as shown
in the snippet below, otherwise Objective-C won&#39;t be able to construct
an instance of the cell class</p>
</blockquote>

<pre><code>public MasterViewController (IntPtr ptr) : base (ptr)
</code></pre>

<p>如果我将构造函数更改为此,我会得到</p>

<pre><code>The type MasterViewController does not contain a constructor that takes 0 arguments.
</code></pre>

<p>当我尝试实例化 ViewController 时。</p>

<p>如何使用正确的构造函数实例化 ViewController ?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>现在我在 ViewController 的构造函数中使用以下模式:</p>

<pre><code>public MasterViewController () : base()
{
    initialize();
}

public MasterViewController (IntPtr ptr) : base (ptr)
{
    initialize();
}

private initialize()
{
    // do your initialization here
}
</code></pre>

<p>这种方法的优点是您可以从 Storyboard 中实例化事物,也可以使用 <code>new</code> 关键字直接在代码中实例化它。</p>

<p>不再知道我的自定义单元问题的解决方案是什么。希望这会有所帮助。</p></p>
                                   
                                                <p style="font-size: 20px;">关于c# - 使用正确的构造函数创建 ViewController 的实例,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/25780462/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/25780462/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: c# - 使用正确的构造函数创建 View Controller 的实例