UICollectionViewCell属性返回null

时间:2016-11-11 14:11:35

标签: c# ios xamarin uicollectionview

我在访问集合视图单元格中的属性时遇到问题。当执行GetCell方法时,我使用断点进行检查,并且该项目正在使用完美的所有正确数据添加到单元格变量。但是,当我执行ItemHighlighted事件时,cell.item为空。

我尝试了RegisterClassForCell,但这会导致应用运行时没有任何单元格可见。

ExistingEvaluationsCollection.RegisterClassForCell(typeof(ExistingEvaluationCell), ExistingEvaluationCell.CellId);
ExistingEvaluationsCollection.Source = source;

enter image description here

1 个答案:

答案 0 :(得分:1)

您不必在ItemHighlighted方法中将单元格出列。要获得对单元格的引用,只需调用GetCell方法。