NewRollButton.h 538 B

1234567891011121314151617181920212223
  1. //
  2. // NewRollButton.h
  3. // MingMen
  4. //
  5. // Created by 罗云飞 on 2017/5/13.
  6. // Copyright © 2017年 罗云飞. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef enum {
  10. rollButtonAndTitle = 0, //按钮+文字
  11. rollButton //纯按钮模式
  12. }NewRollButtonType;
  13. @interface NewRollButton : UICollectionView
  14. @property (assign,nonatomic)NewRollButtonType buttonType;
  15. @property (nonatomic,copy)void (^NewRollButtonCallback)(NSDictionary *dictionary);
  16. - (void)reloadDatas:(NSMutableArray *)array;
  17. @end