我正在尝试从 MvxCollectionViewController 中提供页眉和页脚视图,但遇到了麻烦。通常,使用 UICollectionViewController,我会像这样覆盖 GetViewForSupplementaryElement 方法:
public override UICollectionReusableView GetViewForSupplementaryElement (UICollectionView collectionView, NSString elementKind, NSIndexPath indexPath)
{
var someHeaderOrFooterView = (HeaderOrFooterView) collectionView.DequeueReusableSupplementaryView (elementKind, elementId, indexPath);
return someHeaderOrFooterView;
}
MvxCollectionViewControllers 似乎没有像 UICollectionViewController 那样获得对 GetViewForSupplementaryElement 方法的委托回调。
是否有另一种方法可以使用 MvxCollectionViewController 指定 CollectionView 的页眉和页脚?