XYKeyChain.h 401 B

12345678910111213141516171819
  1. //
  2. // XYKeyChain.h
  3. // XYUUID
  4. //
  5. // Created by steve on 2016/7/21.
  6. // Copyright © 2020 guojunliu.github.io. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface XYKeyChain : NSObject
  10. + (BOOL)setData:(id)data serviceDomain:(NSString *)serviceDomain;
  11. + (id)getDataWithServiceDomain:(NSString *)serviceDomain;
  12. + (BOOL)deleteDataWithServiceDomain:(NSString *)serviceDomain;
  13. @end