在我的iPad应用程序中,有一个以下样式的警报视图UIAlertViewStylePlainTextInput。问题是我无法在alertview文本字段中输入任何其他语言字符(å,ß,Ω)。输入其他语言字符后,它只是在文本字段中显示空白字符串。
saveAlert = [[UIAlertView alloc] initWithTitle:@"Please provide a name for your design." message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:@"OK",@"Cancel",nil];
[saveAlert setTag:SAVE_HTML_NAME_ALERT_TAG];
[saveAlert setAlertViewStyle:UIAlertViewStylePlainTextInput];
[saveAlert show];
alertTextField = [saveAlert textFieldAtIndex:0];
alertTextField.font = [UIFont fontWithName:@"Arial" size:15.0f];
[alertTextField setTag:SAVE_ALERT_TEXT_FIELD_TAG];
[alertTextField setDelegate:self];
其他普通文本字段在应用程序中正常工作,正确显示其他语言字符。 alertview的文本域只有问题。