|
@@ -7,6 +7,8 @@
|
|
|
[cocoadocs]: http://cocoadocs.org/docsets/KeychainSwift
|
|
[cocoadocs]: http://cocoadocs.org/docsets/KeychainSwift
|
|
|
[carthage]: https://github.com/Carthage/Carthage
|
|
[carthage]: https://github.com/Carthage/Carthage
|
|
|
|
|
|
|
|
|
|
+**Important**: KeychainSwift currently [does not work](http://stackoverflow.com/questions/38456471/secitemadd-always-returns-error-34018-in-xcode-8-beta-3-in-ios-10-simulator) at all on iOS 10 / Xcode 8. If you use Xcode 8 you will need to run your app in an iOS 9 simulator or device.
|
|
|
|
|
+
|
|
|
This is a collection of helper functions for saving text and data in the Keychain.
|
|
This is a collection of helper functions for saving text and data in the Keychain.
|
|
|
As you probably noticed Apple's keychain API is a bit verbose. This library was designed to provide shorter syntax for accomplishing a simple task: reading/writing text values for specified keys:
|
|
As you probably noticed Apple's keychain API is a bit verbose. This library was designed to provide shorter syntax for accomplishing a simple task: reading/writing text values for specified keys:
|
|
|
|
|
|
|
@@ -32,8 +34,6 @@ Keychain is a secure storage. You can store all kind of sensitive data in it: us
|
|
|
|
|
|
|
|
There are three ways you can add KeychainSwift to your Xcode project.
|
|
There are three ways you can add KeychainSwift to your Xcode project.
|
|
|
|
|
|
|
|
-Note: Keychain currently [does not work](http://stackoverflow.com/questions/38456471/secitemadd-always-returns-error-34018-in-xcode-8-beta-3-in-ios-10-simulator) at all on iOS 10 / Xcode 8. Use iOS 9 with Xcode 8 instead.
|
|
|
|
|
-
|
|
|
|
|
#### Add source (iOS 7+)
|
|
#### Add source (iOS 7+)
|
|
|
|
|
|
|
|
Simply add [KeychainSwiftDistrib.swift](https://github.com/marketplacer/keychain-swift/blob/master/Distrib/KeychainSwiftDistrib.swift) file into your Xcode project.
|
|
Simply add [KeychainSwiftDistrib.swift](https://github.com/marketplacer/keychain-swift/blob/master/Distrib/KeychainSwiftDistrib.swift) file into your Xcode project.
|