// // NewDynamicListShieldView.h // 乐销 // // Created by liuhuiping on 2017/10/28. // Copyright © 2017年 ping. All rights reserved. // #import @class ShieldScrollView,ShieldView,DynamicListShieldHeaderView; @interface NewDynamicListShieldView : UIControl @property (strong, nonatomic) UIScrollView *shareScrollView; //sc @property (nonatomic, strong) NSArray *shareAryDatas; @property (nonatomic, strong) void (^blockSelectBtnModel)(ModelBtn *);//选择的类型 @property (nonatomic, strong) DynamicListShieldHeaderView *headerView; - (void)resetWithModel:(id)model; @end @interface DynamicListShieldHeaderView : UIView //属性 @property (strong, nonatomic) UIImageView *imgView; @property (strong, nonatomic) UIControl *control; #pragma mark 刷新view - (void)resetView; @end @interface ShieldView : UIControl @property (strong, nonatomic) UIImageView *imgView; @property (strong, nonatomic) UILabel *labelName; @property (nonatomic, strong) ModelBtn *model; @property (nonatomic, strong) void (^blockModel)(ModelBtn *); #pragma mark 刷新cell - (void)resetViewWithModel:(ModelBtn *)model ; @end