24 lines
450 B
Objective-C
24 lines
450 B
Objective-C
//
|
|
// DataCenter.h
|
|
// 爱鱼奇
|
|
//
|
|
// Created by imac on 15/9/21.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "EGOCache.h"
|
|
@interface DataCenter : NSObject
|
|
|
|
|
|
+(instancetype)defaultDtacenter;
|
|
//数据存储
|
|
-(void)setValue:(id)value forKey:(NSString*)key;
|
|
// 获取数据
|
|
-(id)valueForKey:(NSString*)key;
|
|
@property (nonatomic, strong) EGOCache *cache;
|
|
-(void)cacheinit:(NSString*)useid;
|
|
|
|
|
|
@end
|