我弹出一个里面UIAlertView
有一个UITextField
。我希望文本字段自动大写所有单词。我通过设置文本字段的属性来做到这一点,但它们在运行时没有效果。这是我的代码:
UIAlertView* alert = [[UIAlertView alloc] initWithTitle: title
message: message
delegate: self
cancelButtonTitle: @"Cancel"
otherButtonTitles: @"Create", nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
UITextField* titleField = [alert textFieldAtIndex: 0];
titleField.autocapitalizationType = UITextAutocapitalizationTypeWords;
[alert show];
这种自动大写正在处理UITextField
表单XIB
,但这不适用于 UIAlertView,我使用的是 iOS 6。