I'm writing a custom keyboard for iOS. My keyboard needs to be allowed full access. I put "RequestsOpenAccess"
with the value "YES"
in info.Plist
. But I still can't choose to allow full access in the setting. What should I do?
Put the following text in info.plist of the keyboard extension, under Information Property List:
<key>NSExtensionAttributes</key>
<dict>
<key>IsASCIICapable</key>
<false/>
<key>PrefersRightToLeft</key>
<false/>
<key>PrimaryLanguage</key>
<string>en-US</string>
<key>RequestsOpenAccess</key>
<true/>
</dict>
<key>NSExtensionPointIdentifier</key>
<string>com.apple.keyboard-service</string>
<key>NSExtensionPrincipalClass</key>
<string>$(PRODUCT_MODULE_NAME).KeyboardViewController</string>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With