RQHomePageTitleView.h 475 B

123456789101112131415161718192021
  1. //
  2. // RQHomePageTitleView.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/9/9.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQHomePageTitleView : UIView
  11. @property (weak, nonatomic) IBOutlet UILabel *carTypeLabel;
  12. @property (weak, nonatomic) IBOutlet UIView *chadView;
  13. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *chad_layout_W;
  14. + (instancetype)homePageTitleViewView;
  15. @end
  16. NS_ASSUME_NONNULL_END