MerchantEnrollGuideView.h 931 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // MerchantEnrollGuideView.h
  3. // BuguLive
  4. //
  5. // Created by qitewei on 2025/8/11.
  6. // Copyright © 2025 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MerchantBaseEnrollContentView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MerchantEnrollGuideView : MerchantBaseEnrollContentView
  12. @property (nonatomic, strong) UIImageView *headerIconImageView;
  13. @property (nonatomic, strong) UIImageView *headerImageView;
  14. @property (nonatomic, strong) UILabel *textLabel;
  15. @property (nonatomic, strong) UILabel *subtitleLabel;
  16. @property (nonatomic, strong) UIView *stepsContainerView;
  17. @property (nonatomic, strong) UIView *step1View;
  18. @property (nonatomic, strong) UIView *step2View;
  19. @property (nonatomic, strong) UIView *step3View;
  20. @property (nonatomic, strong) UIButton *agreementCheckBox;
  21. @property (nonatomic, strong) UILabel *agreementLabel;
  22. @property (nonatomic, assign) BOOL isAgreementChecked;
  23. @end
  24. NS_ASSUME_NONNULL_END