我在Xamarin Mac项目中使用自定义NSTableView单元格/视图时遇到问题。即使在null
之后,单元格也会被渲染,但它们的出口始终为AwakeFromNib
。
我尝试了以下内容:
NSTableCellView
NSView
NSView
自定义实例化
等 e.g。
tableView.MakeView("Entry", null);
之后的GetViewForItem
tableView.RegisterNib(new NSNib("Entry", NSBundle.MainBundle), "Entry");
或NSBundle.MainBundle.LoadNibNamed(name, null, out arr);
两者都没有用。
这是我尝试过的所有内容的Git回购 https://github.com/github1337/XamarinMacNSTableViewTest
控制台输出显示出口为空。
任何帮助实现这一目标的人都将不胜感激。 提前谢谢!