是否可以在基本UIAlertView
上使用拼写检查,例如:
UIAlertView *alert = [[UIAlertView alloc]initWithTitle: @"title" message:@"alert text" delegate: self cancelButtonTitle:@"OK" otherButtonTitles: nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
[alert show];