标签:http io ar os 使用 sp for on cti
KeychinaItemWrapper官方Demo下载地址KeychinaItemWrapper。
NSString *identifier = @"xxxxxx";//你要使用的标识符
KeychainItemWrapper *keyChina = [[KeychainItemWrapper alloc] initWithIdentifier:identifier accessGroup:nil];
// 保存
[keyChina setObject:@"<username>" forKey:(__bridge id)kSecAttrAccount];
// <username> 注意尖括号一定要存在,内容自己填;key要使用Security.framework中的SecItem.h中申明的key
[keyChina setObject:@"逗乐奇迹" forKey:(__bridge id)kSecValueData];
// "逗乐奇迹"你要存储的内容
// 读取
NSString *user = [keyChina objectForKey:(__bridge id)kSecValueData];
标签:http io ar os 使用 sp for on cti
原文地址:http://www.cnblogs.com/Doule/p/4115295.html