在教程Use Split View to Show two Controllers你以这种方式创建 View Controller 的实例:
masterView = new MasterViewController ();
因此你需要这样的构造函数:
public MasterViewController () : base()
我目前的问题是我的 MasterViewController 没有加载。如果我运行该应用程序,则会显示一个空表,但我的表中应该有一些自定义和数据。
现在我正在使用自定义单元格。在教程Part 2 - Populating a Table with Data写得很清楚:
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't be able to construct
an instance of the cell class
public MasterViewController (IntPtr ptr) : base (ptr)
如果我将构造函数更改为此,我会得到
The type MasterViewController does not contain a constructor that takes 0 arguments.
当我尝试实例化 View Controller 时。
如何使用正确的构造函数实例化 View Controller ?
Best Answer-推荐答案 strong>
现在我在 View Controller 的构造函数中使用以下模式:
public MasterViewController () : base()
{
initialize();
}
public MasterViewController (IntPtr ptr) : base (ptr)
{
initialize();
}
private initialize()
{
// do your initialization here
}
这种方法的优点是您可以从 Storyboard 中实例化事物,也可以使用 new 关键字直接在代码中实例化它。
不再知道我的自定义单元问题的解决方案是什么。希望这会有所帮助。
关于c# - 使用正确的构造函数创建 View Controller 的实例,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/25780462/
|