填充的UITableViewController当标签在自定义单元格为空(Label in cust

2019-10-18 03:39发布

我使用Xamarin.iOS构建一个iOS应用。 我使用的是故事板,并创建了一个UITableViewController使用定制单元分组的表。 该单元包含到我要分配一个值的标签。

重写数据源中设置标签的文本属性会引发空异常,我找不到为什么getcell方法? 我检查出口和它的存在。 如何找到错误的任何提示?

public partial class NameListScreen : UITableViewController
{
    MyTableSource _source = null;

    public override void ViewWillAppear (bool animated)
    {
        base.ViewWillAppear (animated);

        LoadNameList();          
    }

    void LoadNameList ()
    {
        var service = new MyService();
        var names = service.GetAllNames();

        _source = new MyTableSource(names);

        this.TableView.Source = _source;
    }
}

public class MyTableSource : UITableViewSource {

    protected List<string> _names;
    protected string _cellIdentifier = "MyCell";

    public MyTableSource (List<string> items)
    {
        _names = items;
    }

    public override int RowsInSection (UITableView tableview, int section)
    { 
        return _names.Count;
    }

    public override UITableViewCell GetCell (UITableView tableView, MonoTouch.Foundation.NSIndexPath indexPath)
    {
        // Request a recycled cell to save memory
        var cell = (MyTableCell) tableView.DequeueReusableCell(_cellIdentifier);

        // If there are no cells to reuse, create a new one
        if (cell == null)
        cell = new MyTableCell();

        cell.UpdateCell(indexPath, _names[indexPath.Item]);

        return cell;
    }
}


public partial class MyTableCell : UITableViewCell
{

    public MyTableCell () : base ()
    { }

    public MyTableCell (IntPtr handle) : base (handle)
    { }

    public void UpdateCell(NSIndexPath indexPath, string name)
    {
        this._indexPath = indexPath;
        this._id = track.TrackId;
        this.NameLabel.Text = name;   //This row throws exception as NameLabel is null, why? 
    }
}

Answer 1:

根据您的问题,我觉得你没有以正确的方式加载厦门国际银行。 在里面你自定义单元格只是把类似下面的静态方法。

// Inside MyTableCell
public static MyTableCell Create()
{
    NSArray topLevelObjects = NSBundle.MainBundle.LoadNib("MyTableCell", null, null);
    MyTableCell cell = Runtime.GetNSObject(topLevelObjects.ValueAt(0)) as MyTableCell;
    return cell;
}

这种模式现在在新Xamarin细胞创建模板使用。 唯一的区别是, UINib类是使用(我无法验证它,因为我没有Xamarin Studio和我一样)。

然后,在GetCell方法,你应该做类似下面

public override UITableViewCell GetCell (UITableView tableView, MonoTouch.Foundation.NSIndexPath indexPath)
{
    // Request a recycled cell to save memory
    var cell = (MyTableCell) tableView.DequeueReusableCell(_cellIdentifier);

    // If there are no cells to reuse, create a new one
    if (cell == null)
        cell = MyTableCell.Create();

    cell.UpdateCell(indexPath, _names[indexPath.Item]);
    return cell;
}

你需要[Register("MyTableCell")].cs使用在厦门国际银行,如果你还没有注册它。 您还需要设置设计的小区类型MyTableCell在你的XIB文件。

但是,玩Xamarin模板位(如果你创建一个新的IOS文件,你可以选择他们),你会发现一个自定义单元格模板。



文章来源: Label in custom cell is null when populating UITableViewController