PBBaseViewController.h 249 B

12345678910111213141516171819
  1. //
  2. // PBBaseViewController.h
  3. // PBSDK
  4. //
  5. // Created by LStar on 2025/1/16.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface PBBaseViewController : UIViewController
  10. ///协议里面实现
  11. - (void)back;
  12. @end
  13. NS_ASSUME_NONNULL_END