ソースを参照

Update README

Kishikawa Katsumi 5 年 前
コミット
d6a603223d
1 ファイル変更8 行追加5 行削除
  1. 8 5
      README.md

+ 8 - 5
README.md

@@ -316,12 +316,15 @@ do {
 }
 }
 ```
 ```
 
 
-### <a name="touch_id_integration"> :fu: Touch ID integration
+### <a name="touch_id_integration"> :fu: Touch ID (Face ID) integration
 
 
 **Any Operation that require authentication must be run in the background thread.**  
 **Any Operation that require authentication must be run in the background thread.**  
 **If you run in the main thread, UI thread will lock for the system to try to display the authentication dialog.**
 **If you run in the main thread, UI thread will lock for the system to try to display the authentication dialog.**
 
 
-#### :closed_lock_with_key: Adding a Touch ID protected item
+
+**To use Face ID, add `NSFaceIDUsageDescription` key to your `Info.plist`**
+
+#### :closed_lock_with_key: Adding a Touch ID (Face ID) protected item
 
 
 If you want to store the Touch ID protected Keychain item, specify `accessibility` and `authenticationPolicy` attributes.  
 If you want to store the Touch ID protected Keychain item, specify `accessibility` and `authenticationPolicy` attributes.  
 
 
@@ -340,7 +343,7 @@ DispatchQueue.global().async {
 }
 }
 ```
 ```
 
 
-#### :closed_lock_with_key: Updating a Touch ID protected item
+#### :closed_lock_with_key: Updating a Touch ID (Face ID) protected item
 
 
 The same way as when adding.  
 The same way as when adding.  
 
 
@@ -366,7 +369,7 @@ DispatchQueue.global().async {
 }
 }
 ```
 ```
 
 
-#### :closed_lock_with_key: Obtaining a Touch ID protected item
+#### :closed_lock_with_key: Obtaining a Touch ID (Face ID) protected item
 
 
 The same way as when you get a normal item. It will be displayed automatically Touch ID or passcode authentication If the item you try to get is protected.  
 The same way as when you get a normal item. It will be displayed automatically Touch ID or passcode authentication If the item you try to get is protected.  
 If you want to show custom authentication prompt message, specify an `authenticationPrompt` attribute.
 If you want to show custom authentication prompt message, specify an `authenticationPrompt` attribute.
@@ -388,7 +391,7 @@ DispatchQueue.global().async {
 }
 }
 ```
 ```
 
 
-#### :closed_lock_with_key: Removing a Touch ID protected item
+#### :closed_lock_with_key: Removing a Touch ID (Face ID) protected item
 
 
 The same way as when you remove a normal item.
 The same way as when you remove a normal item.
 There is no way to show Touch ID or passcode authentication when removing Keychain items.
 There is no way to show Touch ID or passcode authentication when removing Keychain items.