• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

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

[复制链接]
菜鸟教程小白 发表于 2022-12-13 01:43:48 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

在教程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-推荐答案


现在我在 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/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap