我在钥匙串中存储了一些信息,有一种情况是我需要删除所有项目,而不是[keychain removeObjectForKey:theKey]
为所有钥匙做,我可以这样做:
NSDictionary *spec = [NSDictionary dictionaryWithObjectsAndKeys:(id)kSecClassGenericPassword, kSecClass,
[self serviceName], kSecAttrService, nil];
return !SecItemDelete((CFDictionaryRef)spec);
反而?
我试过了,它奏效了,只是不确定我做的是否正确?