类似 iBooks 的书架布局:MZBookshelfCollectionViewLayout
jopen
11年前
MZBookshelfCollectionViewLayout 是为 UICollectionView 准备的类似 iBooks 的书架布局。
extern NSString *const MZBookshelfCollectionViewLayoutDecorationViewKind; @class MZBookshelfCollectionViewLayout; @protocol MZBookshelfCollectionViewLayoutDelegate <UICollectionViewDelegateFlowLayout> @required - (CGSize)collectionView:(UICollectionView *)collectionView layout:(MZBookshelfCollectionViewLayout *)collectionViewLayout referenceSizeForDecorationViewForRow:(NSInteger)row inSection:(NSInteger)section; @optional - (UIOffset)collectionView:(UICollectionView *)collectionView layout:(MZBookshelfCollectionViewLayout *)collectionViewLayout decorationViewAdjustmentForRow:(NSInteger)row inSection:(NSInteger)section; @end @interface MZBookshelfCollectionViewLayout : UICollectionViewFlowLayout @end