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 のヘッダーとフッターを指定する別の方法はありますか?