作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 UITextField 中的字符自动大写时遇到了一些问题。它在默认的 UIKeyboard 上工作得很好,但是如果我尝试使用 UIKeyboardTypeNamePhonePad,那么自动大写 dosnt 工作。
这是我的代码,
- (void)viewDidLoad {
//..
//get keyboard and textfield ready
codeTextField = [[UITextField alloc] initWithFrame:CGRectMake(20.0, 15.0, 300.0, 45.0)];
codeTextField.delegate = self;
UIFont *textFieldFont = [UIFont fontWithName:@"Helvetica" size:20.0];
[codeTextField setFont:textFieldFont];
codeTextField.textColor = [UIColor blackColor];
[codeTextField setKeyboardType:UIKeyboardTypeNamePhonePad];
[codeTextField setAutocapitalizationType:UITextAutocapitalizationTypeAllCharacters];
[codeTextField setAutocorrectionType:UITextAutocorrectionTypeNo];
//..
最佳答案
如果您查看自动大写属性的 UITextInputTraits 协议(protocol)引用,它指出:
Some keyboard types do not support auto-capitalization. Specifically, this option is ignored if the value in the keyboardType property is set to UIKeyboardTypeNumberPad, UIKeyboardTypePhonePad, or UIKeyboardTypeNamePhonePad.
关于ios - UITextField 没有保持自动资本化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17033424/
我必须为这个问题的简单性道歉。从字面上看,我正在尝试学习第 2 章 javascript,只是为即将到来的事情做好准备。 我的问题具体涉及Chapter 2 of Eloquent Javascrip
我是一名优秀的程序员,十分优秀!