// // GuideViewController.h // Private-x // // Created by APPLE on 2023/8/11. // #import "BaseViewController.h" NS_ASSUME_NONNULL_BEGIN @protocol GuideViewControllerDelegate - (void)startUseBtnBePressed; @end @interface GuideViewController : BaseViewController @property(nonatomic,weak)id delegate; @property(nonatomic,copy)NSString *sn; @end NS_ASSUME_NONNULL_END