AppDelegate+AppService.m 289 B

12345678910111213141516
  1. //
  2. // AppDelegate+AppService.m
  3. // KulexiuForTeacher
  4. //
  5. // Created by 王智 on 2023/8/7.
  6. //
  7. #import "AppDelegate+AppService.h"
  8. @implementation AppDelegate (AppService)
  9. + (AppDelegate *)shareAppDelegate{
  10. return (AppDelegate *)[[UIApplication sharedApplication] delegate];
  11. }
  12. @end