Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 PDKeychainBindingsController,但它没有方法将 AllKeychainItems 重置为 Apple 的 KeychainItemWrapper,谁能告诉我如何执行相同的任务?
谢谢
尝试创建一个新方法:
- (void)resetKeychainItems { bindings = [PDKeychainBindings sharedKeychainBindings]; [bindings removeObjectForKey:@"..."]; [bindings removeObjectForKey:@"..."]; ... }