美文网首页
UICKeyChainStore使用

UICKeyChainStore使用

作者: young_lei | 来源:发表于2017-06-28 13:33 被阅读0次

存储密码这类敏感类会用UICKeyChainStore

1.pod 导入UICKeyChainStore库

2.导入 Security.framework库

存数据:

UICKeyChainStore *keychainStore=[UICKeyChainStore keyChainStoreWithService:@"demo"];

keychainStore[@"password"] = @"123444";

或者[keychainStore setData:@”NSData类型的“ forKey:@"password"];

取数据:

UICKeyChainStore *keychainStore1 = [UICKeyChainStore keyChainStoreWithService:@"demo"];//要跟保存时保持一致

NSString *_passWordStr = [keychainStore1 stringForKey:@"password"];//要跟保存时保持一致

或者:NSData *data = [keychain dataForKey:@"password"];

相关文章

网友评论

      本文标题:UICKeyChainStore使用

      本文链接:https://www.haomeiwen.com/subject/scducxtx.html