1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // NewDynamicListShieldView.h
- // 乐销
- //
- // Created by liuhuiping on 2017/10/28.
- // Copyright © 2017年 ping. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class ShieldScrollView,ShieldView,DynamicListShieldHeaderView;
- @interface NewDynamicListShieldView : UIControl<UIScrollViewDelegate>
- @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
|