如果你想展示的輸入方式,首先實現你們班UIAlertViewDelegate。
其次,當您呈現alertView時,將代表設置爲self。
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"a" message:@"b" delegate:self cancelButtonTitle:@"cancel" otherButtonTitles:@"aaa", nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
[alert show];'
如果您想更改特定領域的鍵盤類型,然後做這樣的
e.g爲1場,它將使鍵盤numeritc。
[[alert textFieldAtIndex:0] setKeyboardType:UIKeyboardTypeNumberPad];
[[alert textFieldAtIndex:0] becomeFirstResponder];
更新的iOS 8.0雨燕
從IOS 8.0以後UIAlertView
已經過時,所以你可能需要使用UIAlertController
var alert = UIAlertController(title: "Title", message: "Your msg",
preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Close", style: UIAlertActionStyle.Cancel,
handler:yourHandler))
alert.addTextFieldWithConfigurationHandler({(textField: UITextField!) in
textField.placeholder = "Password"
textField.secureTextEntry = true // setting the secured text for using password
textField.keyboardType = UIKeyboardType.Default
})
@ nsgulliver,@ nsgulliver,現在,我表達清楚了? – isaced
你想改變鍵盤類型?或者只是想在inputStyle中顯示鍵盤? – nsgulliver
你可以去一個自定義的文本框選項(將添加到添加子視圖方法alertview)。如果你想我可以提供你的代碼。 – harshitgupta