OStack程序员社区-中国程序员成长平台

标题: c# - UINib 的 Xamarin DequeueReusableCell 始终产生 null [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 04:57
标题: c# - UINib 的 Xamarin DequeueReusableCell 始终产生 null

我创建了一个简单的 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 中的自定义单元格,您只需执行以下操作:

注册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/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4