AppDelegate+AppService.h 256 B

1234567891011121314151617181920
  1. //
  2. // AppDelegate+AppService.h
  3. // KulexiuForTeacher
  4. //
  5. // Created by 王智 on 2023/8/7.
  6. //
  7. #import "AppDelegate.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface AppDelegate (AppService)
  10. //单例
  11. + (AppDelegate *)shareAppDelegate;
  12. @end
  13. NS_ASSUME_NONNULL_END