我正在尝试使我的自定义UITable视图仅显示来自不同类的图像。所有内容都会编译,但是一旦应用程序打开,它就会崩溃并告诉我“对象引用未设置为对象的实例”。 这是我的课程,假设要保存图像:pastebin。 COM / QDjDVTdm 这是我的自定义表格单元格:http://pastebin.com/G3TLMfe4 这是我的表格来源:http://pastebin.com/xPDuhBeV
以下是我在视图控制器中声明表的方式:
unclass[] lol= new unclass[2];
UITableView _table;
_table = new UITableView{
Frame = new CoreGraphics.CGRect(0, 30, View.Bounds.Width, View.Bounds.Height-30),
Source = new TableSource(lol)
};
_table.SeparatorStyle = UITableViewCellSeparatorStyle.None;
_table.RowHeight = UITableView.AutomaticDimension;
_table.EstimatedRowHeight = new nfloat (15.0);
View.AddSubview (_table);
答案 0 :(得分:1)
来自评论:
你正在宣布一个2号阵列(新的未分类[2]),但我不知道你在哪里放任何东西。因此,数组中的两个点都将为空。将一些对象放在数组中:
lol[0] = new unclass(...);
lol[1] = new unclass(...);