瀏覽代碼

Update README.md

Evgenii Neumerzhitckii 9 年之前
父節點
當前提交
b5293540ce
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      README.md

+ 3 - 2
README.md

@@ -13,7 +13,7 @@ This is a collection of helper functions for saving text and data in the Keychai
  * <a href="#usage">Get/set string, boolean and NSData Keychain items</a>.
  * <a href="#keychain_item_access">Specify item access security level</a>.
  * <a href="#keychain_synchronization">Synchronize items through iCloud</a>.
- * Share Keychain items with other apps.
+ * <a href="#keychain_access_groups">Share Keychain items with other apps</a>.
 
 ## What's Keychain?
 
@@ -135,7 +135,8 @@ keychain.synchronizable = true
 keychain.get("my key") // Returns "hello world"
 ```
 
-### Sharing keychain items with other apps
+
+<h3 id="keychain_access_groups">Sharing keychain items with other apps</h3>
 
 In order to share keychain items between apps they need to have common *Keychain Groups* registered in *Capabilities > Keychain Sharing* settings. [This tutorial](http://evgenii.com/blog/sharing-keychain-in-ios/) shows how to set it up.