| 1234567891011121314151617181920212223242526272829303132333435 |
- // IMALoginParam.h
- // TIMChat
- //
- // Created by AlexiChen on 16/2/26.
- // Copyright © 2016年 AlexiChen. All rights reserved.
- //
- #import <ImSDK/ImSDK.h>
- #import "IMAPlatformConfig.h"
- @interface TIMLoginParam (PlatformConfig)
- - (IMAPlatformConfig *)config;
- - (void)saveToLocal;
- @end
- @interface IMALoginParam : TIMLoginParam
- @property (nonatomic, assign) NSInteger tokenTime; // 时间戮
- @property (nonatomic, strong) IMAPlatformConfig *config; // 用户对应的配置
- @property (nonatomic, assign) NSInteger isAgree; // 是否需要显示相关协议
- + (instancetype)loadFromLocal;
- // 保存至本地
- - (void)saveToLocal;
- // 是否过期
- - (BOOL)isExpired;
- // 是否有效
- - (BOOL)isVailed;
- @end
|