CommonBarView.h 473 B

1234567891011121314151617181920
  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 CommonBarView:UIView
  10. @property(nonatomic,strong)UIImageView *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. @end
  17. NS_ASSUME_NONNULL_END