Browse Source

Update README.md

Evgenii Neumerzhitckii 10 years ago
parent
commit
fcb6f4f69f
1 changed files with 2 additions and 1 deletions
  1. 2 1
      README.md

+ 2 - 1
README.md

@@ -96,7 +96,7 @@ In order to share keychain items between apps they need to have common *Keychain
 
 Use `accessGroup` property to specify an access group that will be used to access keychain items. It can be used to share Keychain items between your apps. When access group value is nil all application access groups are being accessed. Access group name is used by all functions: set, get, delete and clear.
 
-In the following example we specify an access group "CS671JRA62.com.myapp.KeychainGroup" that will be used to set, get and delete an item "my key". If there are "my key" items in different access groups they will not be affected unless `accessGroup` property is set to nil. Note that you will need to enable Keychain sharing in your apps and set your own unique access group, same in all your apps that share the items. [This tutorial](http://evgenii.com/blog/sharing-keychain-in-ios/) shows how to do it.
+In the following example we specify an access group "CS671JRA62.com.myapp.KeychainGroup" that will be used to set, get and delete an item "my key". If there are "my key" items in different access groups they will not be affected unless `accessGroup` property is set to nil.
 
 ```Swift
 let keychain = KeychainSwift()
@@ -108,6 +108,7 @@ keychain.delete("my key")
 keychain.clear()
 ```
 
+Note that you will need to enable Keychain sharing in your apps and set your own unique access group. The access group needs to be the same in all your apps that share Keychain items. [This tutorial](http://evgenii.com/blog/sharing-keychain-in-ios/) shows how to do it.
 
 ### Setting key prefix