12345678910111213141516171819 |
- //
- // AppDelegate+AppService.h
- // KulexiuForTeacher
- //
- // Created by 王智 on 2023/8/7.
- //
- #import "AppDelegate.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface AppDelegate (AppService)
- //单例
- + (AppDelegate *)shareAppDelegate;
- @end
- NS_ASSUME_NONNULL_END
|