GuideViewController.h 426 B

1234567891011121314151617181920212223242526
  1. //
  2. // GuideViewController.h
  3. // 双子星云手机
  4. //
  5. // Created by APPLE on 2023/8/11.
  6. //
  7. #import "BaseViewController.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @protocol GuideViewControllerDelegate <NSObject>
  10. - (void)startUseBtnBePressed;
  11. @end
  12. @interface GuideViewController : BaseViewController
  13. @property(nonatomic,weak)id<GuideViewControllerDelegate> delegate;
  14. @property(nonatomic,copy)NSString *sn;
  15. @end
  16. NS_ASSUME_NONNULL_END