gpt4 book ai didi

ios - 如何将 textField 键盘更改为仅阿拉伯数字? swift/UIKit

转载 作者:行者123 更新时间:2023-12-04 08:14:44 24 4
gpt4 key购买 nike

我试图让我的文本字段只显示阿拉伯数字键盘,无论设备使用什么语言。我将应用程序基本语言更改为阿拉伯语,但它仍然向我显示英语数字。
keyboardImage

最佳答案

您可以创建一个子类,如 ArabicTextFieldUITextField并使用 textInputMode更改键盘的属性如下

class ArabicTextField: UITextField {
override var textInputMode: UITextInputMode? {
UITextInputMode.activeInputModes.filter
{ $0.primaryLanguage == "ar" }.first ?? super.textInputMode }
}

关于ios - 如何将 textField 键盘更改为仅阿拉伯数字? swift/UIKit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65761883/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com