| 1234567891011121314151617181920212223242526 |
- //
- // CommonBarView.h
- // SeeTheDay
- //
- // Created by lww on 2022/6/25.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PlayDetailBarView:UIView
- @property(nonatomic,strong)UIView *bgView;
- @property(nonatomic,strong)UIButton *leftButton;
- @property(nonatomic,strong)UIButton *rightButton;
- @property(nonatomic,strong)UILabel *label;
- @property(nonatomic,strong)UIImageView *imageView;
- @property(nonatomic,strong)UIView *blineView;
- @property(nonatomic,assign)int issel;
- @property(nonatomic,strong)NSArray *dataArr;
- @property(nonatomic,strong)UIImageView *tipimageView;
- @property (nonatomic, copy) void(^changeTitAction)(int index);
- -(void)changeSelAction:(NSInteger)tag;
- @property (nonatomic, copy) void(^changeActionToFirst)(void);
- @end
- NS_ASSUME_NONNULL_END
|