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

c# - UINib 的 Xamarin DequeueReusableCell 始终产生 null

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

我创建了一个简单的 View Controller ,上面有一个表格 View 。然后,我创建了一个 .xib 文件来设计将进入表格的 UITableViewCells。

无论我如何尝试 GetCell 都找不到 UITableViewCell Nib 。我经历了名称/身份和类型转换的所有变体。我对 Xamarin 和 c# 很陌生,所以我可能缺少一些简单的东西。

View Controller :

public partial class ScheduleViewController : BaseViewController<ScheduleViewModel>
{
    [Export("initWithBundlewner:extras:")]
    public ScheduleViewController(NSBundle bundle, UIViewController owner, string extras) : base("ScheduleViewController", bundle, owner, extras)
    {
    }

    public override void ViewDidLoad()
    {
        base.ViewDidLoad();
        Dictionary<string, List<string>> itemData = new Dictionary<string, List<string>>()
        {
            {"phones", new List<string>() {
                "Android",
                "iOS",
                "Windows Phone",
                "Other",
                "The Thing"
            }},
            {"computers", new List<string>() {
                "osx",
                "windows",
                "linux"
            }}
        };

        UITableView table = new UITableView(View.Bounds);
        table.Source = new ScheduleTableViewSource(itemData);
        table.SeparatorStyle = UITableViewCellSeparatorStyle.None;
        Add(table);
    }

UITableVIewCell 类:

public partial class WorkCell : UITableViewCell
{
    public static readonly NSString Key = new NSString("WorkCell");
    public static readonly UINib Nib;

    static WorkCell()
    {
        Nib = UINib.FromName("WorkCell", NSBundle.MainBundle);
    }

    protected WorkCell(IntPtr handle) : base(handle)
    {
        // Note: this .ctor should not contain any initialization logic.
    }
}

WorkCell .xib 文件

enter image description here

enter image description here

TableViewDataSource:

    public override UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath)
    {
        // always null
        UINib nib = UINib.FromName("WorkCellContainer", NSBundle.MainBundle);
tableView.RegisterNibForCellReuse(nib, "workItemCell");
        var cell = (WorkCell)tableView.DequeueReusableCell ("workItemCell");

        return cell;
}



Best Answer-推荐答案


不需要在 GetCell 方法中加载 nib。要使用 xib 中的自定义单元格,您只需执行以下操作:

  • 使用上下文菜单创建 xib( 选择 iOS,选择 Table View Cell)

  • 在您的 ViewController 子类中注册 nib 以供单元重用

  • 设置重用标识符(为简单起见,使用与单元格名称相同的名称即可)

  • 在出列单元格时使用重用标识符

注册NIB

ViewDidLoad 的 UITableViewController 子类中(例如,在设置 DataSource 之前)添加以下内容:

table.RegisterNibForCellReuse(WorkCell.Nib, WorkCell.Key);

为单元设置重用标识符

reuse identifier

出列单元格

public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
{
    var cell = tableView.DequeueReusableCell(WorkCell.Key, indexPath) as WorkCell;

    //set the data in work cell here


    return cell;
}

在模拟器中测试

test in simulator

关于c# - UINib 的 Xamarin DequeueReusableCell 始终产生 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53509339/

回复

使用道具 举报

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

本版积分规则

关注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