IMAPlatform+AppConfig.h 571 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // IMAPlatform+AppConfig.h
  3. // TIMChat
  4. //
  5. // Created by AlexiChen on 16/2/26.
  6. // Copyright © 2016年 AlexiChen. All rights reserved.
  7. //
  8. #import "IMAPlatform.h"
  9. // 与App配置相关的操作
  10. @interface IMAPlatform (AppConfig)
  11. // app 启动时配置
  12. - (void)configOnAppLaunch;
  13. // app 进入后台时配置
  14. - (void)configOnAppEnterBackground;
  15. // app 进前台时配置
  16. - (void)configOnAppEnterForeground;
  17. // app become active
  18. - (void)configOnAppDidBecomeActive;
  19. // app 注册APNS成功后
  20. - (void)configOnAppRegistAPNSWithDeviceToken:(NSData *)data;
  21. @end