OneSectionCell.h 320 B

12345678910111213141516
  1. //
  2. // OneSectionCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/7/4.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface OneSectionCell : UICollectionViewCell
  10. @property (nonatomic, copy) void (^block) (int tag);
  11. - (CGFloat)creatCellWithArray:(NSMutableArray *)array;
  12. @end