我在Info.plist中添加了以下文本,以尝试实现生物识别身份验证:
<key>NSFaceIDUsageDescription</key>
字符串但是,我遇到了一个错误。所以我做了以下修改:
<key>NSFaceIDUsageDescription</key> <string>Why is my app authenticating using face id?</string> /* add */
型为什么<string></string>中包含的文本是必要的?
<string></string>
x3naxklr1#
plist文件是一个包含键值对的文件。每个系统密钥都有不同的用途。* 即 * UIMainStoryboardFile确定main.storyboard,* 等等。* 在您的情况下,它是用于权限请求,特别是生物识别。您必须为此密钥提供一个值,该值将在权限警报中显示为消息。请查看下面的文档:https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW75
plist
UIMainStoryboardFile
main.storyboard
的数据
1条答案
按热度按时间x3naxklr1#
plist
文件是一个包含键值对的文件。每个系统密钥都有不同的用途。* 即 *UIMainStoryboardFile
确定main.storyboard
,* 等等。* 在您的情况下,它是用于权限请求,特别是生物识别。您必须为此密钥提供一个值,该值将在权限警报中显示为消息。请查看下面的文档:https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW75
的数据