12345678910111213141516171819 |
- //
- // PBBaseViewController.h
- // PBSDK
- //
- // Created by LStar on 2025/1/16.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PBBaseViewController : UIViewController
- ///协议里面实现
- - (void)back;
- @end
- NS_ASSUME_NONNULL_END
|