NewRollButtonCell.h 414 B

1234567891011121314151617181920
  1. //
  2. // NewRollButtonCell.h
  3. // MingMen
  4. //
  5. // Created by 罗云飞 on 2017/5/14.
  6. // Copyright © 2017年 罗云飞. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "NewRollButton.h"
  10. @interface NewRollButtonCell : UICollectionViewCell
  11. @property(strong,nonatomic) UIImageView *img;
  12. @property(strong,nonatomic) UILabel *tilte;
  13. - (void)assignment:(NSDictionary *)model type:(NewRollButtonType)type;
  14. @end