15 lines
318 B
Objective-C
15 lines
318 B
Objective-C
//
|
|
// KeyChainStore.h
|
|
//
|
|
// Created by Andrew on 2017/8/5.
|
|
// Copyright © 2017年 Andrew. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface KeyChainStore : NSObject
|
|
+ (void)save:(NSString *)service data:(id)data;
|
|
+ (id)load:(NSString *)service;
|
|
+ (void)deleteKeyData:(NSString *)service;
|
|
@end
|