用于UINib的Xamarin DequeueReusableCell始终会产生null

时间:2018-11-27 22:39:29

标签: c# ios xamarin

我创建了一个简单的视图控制器,上面有一个表格视图。然后,我创建了一个.xib文件来设计将要插入表中的UITableViewCells。

无论我尝试什么GetCell都找不到UITableViewCell笔尖。我经历了名称/标识和演员表的各种变体。我对Xamarin和C#还是很陌生,所以我可能缺少一些简单的东西。

ViewController:

public partial class ScheduleViewController : BaseViewController<ScheduleViewModel>
{
    [Export("initWithBundle:owner: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;
}

2 个答案:

答案 0 :(得分:2)

不必在GetCell方法中加载笔尖。代替使用来自xib的自定义单元格,只需执行以下操作:

  • 使用上下文菜单创建xib(<添加/新建文件>选择iOS,选择Table View Cell

  • 在ViewController子类中注册笔尖以进行单元重用

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

  • 当单元出队时使用重用标识符

注册NIB

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

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

答案 1 :(得分:0)

这应该可以工作,尽管您只显示了一部分xib文件,所以我可能出了点问题:

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

        return cell;
}

虽然这应该可行,但是不需要在GetCell中注册tableView,您应该在ViewDidLoad中这样做,这是一个更好的解决方案。