2017-01-28 2 views

Antwort

1

So fand ich die Lösung, die durch die Folge im UICollectionViewSource Umsetzung:

[Export ("collectionView:layout:sizeForItemAtIndexPath:"), CompilerGenerated] 
public virtual CGSize GetSizeForItem (UICollectionView collectionView, UICollectionViewLayout layout, NSIndexPath indexPath) 
{ 
    return new CGSize (width, height); 
} 

diese Sie Breite steuern Sie Ihre Zelle lässt.

Verwandte Themen