1

我想在我的应用程序中保存密码和 ID。我下载了

[KeychainItemWrapper][1]

https://developer.apple.com/library/ios/samplecode/GenericKeychain/Introduction/Intro.html

并在我的项目中添加了 KeychainItemWrapper.h/m。当想要使用类来解决这个问题时。 在此处输入图像描述

4

2 回答 2

7

最好使用其他包装库而不是来自 Apple 的包装库,例如FXKeychainSSKeychain,因为来自 Apple 的包装库不支持 ARC,但如果您想使用它,请导航到项目的构建阶段 -> 编译源 -> 将该KeychainItemWrapper.m编译器标志更改为-fno-objc-arc

较新的钥匙串库是Locksmith

于 2015-10-15T06:05:01.207 回答
0

您可以在项目设置 -> 构建阶段 -> KeycchainItemWrapper.m 中使用 fno-objc-arc 编译标志禁用 ARC 标志

于 2016-09-27T10:18:34.747 回答