猎豆优选

ComprehensiveView.h 590B

12345678910111213141516171819202122232425
  1. //
  2. // ComprehensiveView.h
  3. // YouHuiProject
  4. //
  5. // Created by liuxueli on 2019/1/4.
  6. // Copyright © 2019 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol selectComViewDelegate <NSObject>
  11. -(void)selectWithBtn:(UIButton *)btn;
  12. @end
  13. @interface ComprehensiveView : UIView
  14. -(instancetype)initWithFrame:(CGRect)frame CompreensiveArray:(NSArray *)arr;
  15. @property (nonatomic, weak) id <selectComViewDelegate> delegate;
  16. @property(nonatomic,strong)NSDictionary *selectDic;
  17. @property(nonatomic,strong)NSMutableArray *btnArray;
  18. @end
  19. NS_ASSUME_NONNULL_END