| 12345678910111213141516171819202122 |
- //
- // XHAlbumCollectionViewFlowLayout.m
- // MessageDisplayExample
- //
- // Created by 曾 宪华 on 14-5-21.
- // Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
- //
- #import "XHAlbumCollectionViewFlowLayout.h"
- @implementation XHAlbumCollectionViewFlowLayout
- - (id)init {
- self = [super init];
- if (self) {
- self.itemSize = CGSizeMake(85,85);
- self.minimumInteritemSpacing =5;
- self.minimumLineSpacing = 10;
- }
- return self;
- }
- @end
|