| 1234567891011121314151617181920212223242526272829303132 |
- //
- // IMAPlatform+AppConfig.h
- // TIMChat
- //
- // Created by AlexiChen on 16/2/26.
- // Copyright © 2016年 AlexiChen. All rights reserved.
- //
- #import "IMAPlatform.h"
- // 与App配置相关的操作
- @interface IMAPlatform (AppConfig)
- // app 启动时配置
- - (void)configOnAppLaunch;
- // app 进入后台时配置
- - (void)configOnAppEnterBackground;
- // app 进前台时配置
- - (void)configOnAppEnterForeground;
- // app become active
- - (void)configOnAppDidBecomeActive;
- // app 注册APNS成功后
- - (void)configOnAppRegistAPNSWithDeviceToken:(NSData *)data;
- @end
|