1

Xamarin.iOS を使用して iOS アプリを作成しています。ストーリーボードを使用しておりUITableViewController、カスタム セルを使用してグループ化されたテーブルを作成しました。セルには、値を割り当てたいラベルが含まれています。

ラベルのテキスト プロパティを設定するためにデータ ソースの getcell メソッドをオーバーライドすると、null 例外がスローされますが、その理由がわかりません。コンセントを確認しましたが、あります。エラーを見つける方法に関するヒントはありますか?

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? 
    }
}
4

1 に答える 1

0

あなたの質問に基づいて、xib を正しい方法でロードしなかったと思います。カスタムセル内に、次のような静的メソッドを配置するだけです。

// 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;
}

まだ登録していない場合は、XIB で使用するため[Register("MyTableCell")]に必要です。XIB ファイル.csのように、設計されたセルのタイプを設定する必要もあります。MyTableCell

ただし、Xamarin テンプレート (新しい iOS ファイルを作成する場合はそれらを選択できます) を少し試してみると、カスタム セル テンプレートが見つかります。

于 2013-05-22T18:14:11.117 に答える