钥匙串 ——单界面

导入文件 — 
KeychainItemWrapper/KeychainItemWrapper.h 
引入头文件 -  KeychainItemWrapper/KeychainItemWrapper.h 
 1.创建一个钥匙串对象
// 参数一 : 表示这个钥匙串对象的标识符   
// 参数二 : 分组, 一般为 nil    
KeychainItemWrapper *wrapper = [[KeychainItemWrapper alloc] initWithIdentifier:@"MyitemWrapper" accessGroup:nil];       
// 钥匙串是类似于字典存储的,在存储的时候,必须使用系统提供的两个key值,其他的存不进去   
id kUserName = (__bridge id)kSecAttrAccount;    
id kPassWord = (__bridge id)kSecValueData;       
//存入钥匙串里面    
[wrapper setObject:@"123" forKey:kUserName];   
[wrapper setObject:@"abc" forKey:kPassWord];    
//这里已经保存完成了    
#warning 获取钥匙串的数据    
KeychainItemWrapper *newWrapper = [[KeychainItemWrapper alloc] initWithIdentifier:@"MyitemWrapper" accessGroup:nil];       
NSString *newString = [newWrapper objectForKey:kUserName];    
NSString *passWord = [newWrapper objectForKey:kPassWord];   
NSLog(@"userName == %@, passWord === %@", newString, passWord);

你可能感兴趣的:(钥匙串 ——单界面)