Native UITextField Secure Text Entry forces English (US) keyboard(本机 UITextField 安全文本输入强制使用英语(美国)键盘)
问题描述
我有一个非常简单的登录页面(登录名 + 密码).
I have a very simple login page (login + password).
我的用户是法国人,所以他们的键盘是法语 (azerty).
My users are french, so their keyboard are French (azerty).
从 iOS 12 开始,当他们单击受保护的密码文本字段时,即使他们的设备上没有安装此键盘,键盘也会切换为英语 (qwerty).此外,如果他们没有安装此键盘,他们将无法切换回他们的键盘.
Since iOS 12, when they click on the password textfield, which is secured, the keyboard switches to English (qwerty), even if they do not have this keyboard installed on their devices. Moreover, if they do not have this keyboard installed, they can't switch back to their keyboard.
我发现如果我停用安全文本输入,问题不会出现.
I found out that if I deactivate Secure Text Entry, the problem does not show up.
我还尝试以编程方式设置 isSecureTextEntry,但出现了错误.
I also tried to set isSecureTextEntry programmatically, and the bug shows up.
我正在添加两个屏幕截图,每个文本字段一个.
I am adding two screenshots, one for each text field.
非常感谢您的宝贵时间帮助.
Thank you a lot for your time & help.
推荐答案
这确实是一个 iOS 错误 => 在 iOS 12.1 中更正
This was truly an iOS bug => corrected in iOS 12.1
这篇关于本机 UITextField 安全文本输入强制使用英语(美国)键盘的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:本机 UITextField 安全文本输入强制使用英语(美国
基础教程推荐
- - (CGRect)convertRect:(CGRect)rect toView:(UIView *)view 如何工作 2022-01-01
- 在 iOS8 中无法获得正确的键盘高度值 2022-01-01
- 在 Android 模拟器中激活网络位置提供程序? 2022-01-01
- 如何将多个组件添加到 PickerView? 2022-01-01
- Android:STATE_SELECTED不工作 2022-01-01
- 我的 UIImageView 的任务 2022-01-01
- 突出显示朗读文本(在 iPhone 的故事书类型应用程序中) 2022-01-01
- 在 appComponent dagger 2 中动态添加测试模块? 2022-01-01
- 可可/目标C(OSX不是iOS)从子对象访问父对象 2022-01-01
- 新的@SystemApi 注解是什么意思,和@hide 有什么区别 2022-01-01
