我创建了一个简单的 View Controller ,上面有一个表格 View 。然后,我创建了一个 .xib 文件来设计将进入表格的 UITableViewCells。
无论我如何尝试 GetCell 都找不到 UITableViewCell Nib 。我经历了名称/身份和类型转换的所有变体。我对 Xamarin 和 c# 很陌生,所以我可能缺少一些简单的东西。
View Controller :
public partial class ScheduleViewController : BaseViewController<ScheduleViewModel>
{
[Export("initWithBundlewner: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 文件
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;
}
Best Answer-推荐答案 strong>
不需要在 GetCell 方法中加载 nib。要使用 xib 中的自定义单元格,您只需执行以下操作:
使用上下文菜单创建 xib( 选择 iOS ,选择 Table View Cell )
在您的 ViewController 子类中注册 nib 以供单元重用
设置重用标识符(为简单起见,使用与单元格名称相同的名称即可)
在出列单元格时使用重用标识符
注册NIB
在 ViewDidLoad 的 UITableViewController 子类中(例如,在设置 DataSource 之前)添加以下内容:
table.RegisterNibForCellReuse(WorkCell.Nib, WorkCell.Key);
为单元设置重用标识符
出列单元格
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;
}
在模拟器中测试
关于c# - UINib 的 Xamarin DequeueReusableCell 始终产生 null,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/53509339/
|