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