12345678910111213141516171819202122232425 |
- //
- // ComprehensiveView.h
- // YouHuiProject
- //
- // Created by liuxueli on 2019/1/4.
- // Copyright © 2019 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol selectComViewDelegate <NSObject>
- -(void)selectWithBtn:(UIButton *)btn;
- @end
- @interface ComprehensiveView : UIView
- -(instancetype)initWithFrame:(CGRect)frame CompreensiveArray:(NSArray *)arr;
- @property (nonatomic, weak) id <selectComViewDelegate> delegate;
- @property(nonatomic,strong)NSDictionary *selectDic;
- @property(nonatomic,strong)NSMutableArray *btnArray;
- @end
- NS_ASSUME_NONNULL_END
|