单军华
2018-07-11 7b02207537d35bfa1714bf8beafc921f717d100a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
//  UMSocialDataManager.h
//  UMSocialSDK
//
//  Created by umeng on 16/8/9.
//  Copyright © 2016年 dongjianxiong. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import "UMSocialPlatformConfig.h"
extern NSString *const  kUMSocialAuthUID;
extern NSString *const  kUMSocialAuthAccessToken;
extern NSString *const  kUMSocialAuthExpireDate;
extern NSString *const  kUMSocialAuthRefreshToken;
extern NSString *const  kUMSocialAuthOpenID;
 
@interface UMSocialDataManager : NSObject
 
+ (UMSocialDataManager *)defaultManager;
 
@property (nonatomic, strong, readonly) NSMutableDictionary *allAuthorUserInfo;
 
- (void)setAuthorUserInfo:(NSDictionary *)userInfo platform:(UMSocialPlatformType)platformType;
 
- (NSDictionary *)getAuthorUserInfoWithPlatform:(UMSocialPlatformType)platformType;
 
- (void)deleteAuthorUserInfoWithPlatform:(UMSocialPlatformType)platformType;
 
- (BOOL)isAuth:(UMSocialPlatformType)platformType;
 
- (void)clearAllAuthorUserInfo;
 
@end