HomeCommonBarView.h 773 B

1234567891011121314151617181920212223242526
  1. //
  2. // CommonBarView.h
  3. // SeeTheDay
  4. //
  5. // Created by lww on 2022/6/25.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface HomeCommonBarView:UIView
  10. @property(nonatomic,strong)UIView *bgView;
  11. @property(nonatomic,strong)UIButton *leftButton;
  12. @property(nonatomic,strong)UIButton *rightButton;
  13. @property(nonatomic,strong)UILabel *label;
  14. @property(nonatomic,strong)UIImageView *imageView;
  15. @property(nonatomic,strong)UIView *blineView;
  16. @property(nonatomic,assign)int issel;
  17. @property(nonatomic,strong)NSArray *dataArr;
  18. @property(nonatomic,strong)UIImageView *tipimageView;
  19. @property (nonatomic, copy) void(^changeTitAction)(int index);
  20. -(void)changeSelAction:(NSInteger)tag;
  21. @property (nonatomic, copy) void(^changeActionToFirst)(void);
  22. @end
  23. NS_ASSUME_NONNULL_END