YostarKeychain.h 418 B

12345678910111213141516171819202122
  1. //
  2. // YostarKeychain.h
  3. // YostarUtilits
  4. //
  5. // Created by Yostar on 2018/6/21.
  6. // Copyright © 2018年 Yostar. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface YostarKeychain : NSObject
  10. // save ... to keychain
  11. + (void)save:(NSString *)service data:(id)data;
  12. // take out ... from keychain
  13. + (id)load:(NSString *)service;
  14. // delete ... from keychain
  15. + (void)delete:(NSString *)service;
  16. @end