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