6
我錯過了一些我懷疑是顯而易見的東西,但我無法找到它。UITableViewCell的DetailTextLabel爲空,錯過了什麼?
UITableViewCell cell = tableView.DequeueReusableCell("MyCell");
if (cell == null) {
cell = new UITableViewCell(UITableViewCellStyle.Default, "MyCell");
}
cell.TextLabel.Text = "Foo";
cell.DetailTextLabel.Text = "Foo2";
我收到一個空引用異常,其中DetailTextLabel
。