ユーザー名を取得したい。シンプルなテキスト入力ダイアログボックス。これを行う簡単な方法はありますか?
ユーザー名を取得したい。シンプルなテキスト入力ダイアログボックス。これを行う簡単な方法はありますか?
回答:
iOS 5では、これに新しく簡単な方法があります。実装が完全かどうかUITableViewCell
はわかりません。たとえばのような優雅なものではないのですが、iOS APIで標準でサポートされるようになったので、間違いなくうまくいくはずです。これにはプライベートAPIは必要ありません。
UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"This is an example alert!" delegate:self cancelButtonTitle:@"Hide" otherButtonTitles:nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
[alert show];
[alert release];
これにより、次のようなalertViewがレンダリングされます(XCode 4.2のiPhone 5.0シミュレーターから取得したスクリーンショット):
ボタンを押すと、通常のデリゲートメソッドが呼び出され、そこで次のようにtextInputを抽出できます。
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
NSLog(@"Entered: %@",[[alertView textFieldAtIndex:0] text]);
}
ここでは、入力された結果をNSLogで表示しています。本番用コードでは、おそらく、alertViewへのポインタをグローバル変数として保持するか、alertViewタグを使用して、デリゲート関数が適切に呼び出されたかどうかを確認する必要UIAlertView
がありますが、この例では問題ありません。
UIAlertView APIをチェックアウトすると、さらにいくつかのスタイルが定義されていることがわかります。
これが役に立てば幸い!
-編集-
alertViewを少しいじってみましたが、必要に応じてtextFieldを編集することは完全に可能であるというアナウンスは必要ないと思いますUITextField
。これを行うことで、元の質問で指定したとおりにalertViewを作成しました。遅くなることはありませんよね。
UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"Hello!" message:@"Please enter your name:" delegate:self cancelButtonTitle:@"Continue" otherButtonTitles:nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
UITextField * alertTextField = [alert textFieldAtIndex:0];
alertTextField.keyboardType = UIKeyboardTypeNumberPad;
alertTextField.placeholder = @"Enter your name";
[alert show];
[alert release];
これにより、次のアラートが生成されます。
先ほど私が投稿したのと同じデリゲートメソッドを使用して、入力からの結果を処理できます。が閉じるのを防ぐことができるかどうかはわかりUIAlertView
ません(shouldDismiss
デリゲート関数AFAIK はありません)。したがって、ユーザー入力が無効な場合は、show
正しい入力が行われるまで新しいアラート(またはこのアラートを再発行)を行う必要があると思います入りました。
楽しんで!
ユーザーがテキストを入力した後に確実にコールバックされるようにするには、構成ハンドラー内でデリゲートを設定します。 textField.delegate = self
Swift 3&4(iOS 10-11):
let alert = UIAlertController(title: "Alert", message: "Message", preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "Click", style: UIAlertActionStyle.default, handler: nil))
alert.addTextField(configurationHandler: {(textField: UITextField!) in
textField.placeholder = "Enter text:"
textField.isSecureTextEntry = true // for password input
})
self.present(alert, animated: true, completion: nil)
Swift(iOS 8-10)の場合:
override func viewDidAppear(animated: Bool) {
var alert = UIAlertController(title: "Alert", message: "Message", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Click", style: UIAlertActionStyle.Default, handler: nil))
alert.addTextFieldWithConfigurationHandler({(textField: UITextField!) in
textField.placeholder = "Enter text:"
textField.secureTextEntry = true
})
self.presentViewController(alert, animated: true, completion: nil)
}
Objective-C(iOS 8)の場合:
- (void) viewDidLoad
{
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Alert" message:@"Message" preferredStyle:UIAlertControllerStyleAlert];
[alert addAction:[UIAlertAction actionWithTitle:@"Click" style:UIAlertActionStyleDefault handler:nil]];
[alert addTextFieldWithConfigurationHandler:^(UITextField *textField) {
textField.placeholder = @"Enter text:";
textField.secureTextEntry = YES;
}];
[self presentViewController:alert animated:YES completion:nil];
}
iOS 5-7の場合:
UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"INPUT BELOW" delegate:self cancelButtonTitle:@"Hide" otherButtonTitles:nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
[alert show];
注:以下はiOS 7では機能しません(iOS 4-6は機能します)
別のバージョンを追加するだけです。
- (void)viewDidLoad{
UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"Preset Saving..." message:@"Describe the Preset\n\n\n" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Ok", nil];
UITextField *textField = [[UITextField alloc] init];
[textField setBackgroundColor:[UIColor whiteColor]];
textField.delegate = self;
textField.borderStyle = UITextBorderStyleLine;
textField.frame = CGRectMake(15, 75, 255, 30);
textField.placeholder = @"Preset Name";
textField.keyboardAppearance = UIKeyboardAppearanceAlert;
[textField becomeFirstResponder];
[alert addSubview:textField];
}
それから私は[alert show];
それが欲しいときに電話します。
進む方法
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
NSString* detailString = textField.text;
NSLog(@"String is: %@", detailString); //Put it on the debugger
if ([textField.text length] <= 0 || buttonIndex == 0){
return; //If cancel or 0 length string the string doesn't matter
}
if (buttonIndex == 1) {
...
}
}
alertView:(UIAlertView *) clickedButtonAtIndex:(NSInteger)buttonIndex
textField.textの値をフェッチするために、デリゲートメソッドに以下を配置する必要があることがわかりました。`NSString * theMessage = [alertView textFieldAtIndex:0] .text; `
Warkstの3番目のコードスニペットをテストしました-数値ではなくデフォルトの入力タイプに変更したことを除いて、うまくいきました:
UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"Hello!" message:@"Please enter your name:" delegate:self cancelButtonTitle:@"Continue" otherButtonTitles:nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
UITextField * alertTextField = [alert textFieldAtIndex:0];
alertTextField.keyboardType = UIKeyboardTypeDefault;
alertTextField.placeholder = @"Enter your name";
[alert show];
IOS 9.0以降はUIAlertControllerを使用します:
UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"My Alert"
message:@"This is an alert."
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
//use alert.textFields[0].text
}];
UIAlertAction* cancelAction = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
//cancel action
}];
[alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
// A block for configuring the text field prior to displaying the alert
}];
[alert addAction:defaultAction];
[alert addAction:cancelAction];
[self presentViewController:alert animated:YES completion:nil];
重要な情報を追加したかったのですが、おそらく回答を求めている人がすでに知っているかもしれないという前提で省略されたと思います。この問題は頻繁に発生しviewAlert
、UIAlertView
メッセージのボタンのメソッドを実装しようとすると私も行き詰まりました。これを行うには、最初に次のようなデリゲートクラスを追加する必要があります。
@interface YourViewController : UIViewController <UIAlertViewDelegate>
お役に立てれば。
UIViewControllerでこのSwiftコードを試してください-
func doAlertControllerDemo() {
var inputTextField: UITextField?;
let passwordPrompt = UIAlertController(title: "Enter Password", message: "You have selected to enter your passwod.", preferredStyle: UIAlertControllerStyle.Alert);
passwordPrompt.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: { (action) -> Void in
// Now do whatever you want with inputTextField (remember to unwrap the optional)
let entryStr : String = (inputTextField?.text)! ;
print("BOOM! I received '\(entryStr)'");
self.doAlertViewDemo(); //do again!
}));
passwordPrompt.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Default, handler: { (action) -> Void in
print("done");
}));
passwordPrompt.addTextFieldWithConfigurationHandler({(textField: UITextField!) in
textField.placeholder = "Password"
textField.secureTextEntry = false /* true here for pswd entry */
inputTextField = textField
});
self.presentViewController(passwordPrompt, animated: true, completion: nil);
return;
}
スウィフト3:
let alert = UIAlertController(title: "Alert", message: "Message", preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "Click", style: UIAlertActionStyle.default, handler: nil))
alert.addTextField(configurationHandler: {(textField: UITextField!) in
textField.placeholder = "Enter text:"
})
self.present(alert, animated: true, completion: nil)
サブビューUIAlertView
でa を使用しますUITextField
。テキストフィールドを手動で追加するか、iOS 5では新しい方法のいずれかを使用できます。
code
UIAlertView * myAlertView = [[UIAlertView alloc] initWithTitle:@ "ここにタイトルがあります"メッセージ:@ "これはカバーされます" delegate:self cancelButtonTitle:@ "Cancel" otherButtonTitles:@ "OK"、nil]; UITextField * myTextField = [[UITextField alloc] initWithFrame:CGRectMake(12.0、45.0、260.0、25.0)]; CGAffineTransform myTransform = CGAffineTransformMakeTranslation(0.0、130.0); [myAlertView setTransform:myTransform]; [myTextField setBackgroundColor:[UIColor whiteColor]]; [myAlertView addSubview:myTextField]; [myAlertViewショー]; [myAlertViewリリース];
このようにUIAlertViewにビューを追加します。iOS 5では、あなたのためにそれを行う「魔法の」ことがいくつかあります(しかし、それはすべてNDAの下にあります)。
XamarinとC#の場合:
var alert = new UIAlertView ("Your title", "Your description", null, "Cancel", new [] {"OK"});
alert.AlertViewStyle = UIAlertViewStyle.PlainTextInput;
alert.Clicked += (s, b) => {
var title = alert.ButtonTitle(b.ButtonIndex);
if (title == "OK") {
var text = alert.GetTextField(0).Text;
...
}
};
alert.Show();
UIAlertview *alt = [[UIAlertView alloc]initWithTitle:@"\n\n\n" message:nil delegate:nil cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
UILabel *lbl1 = [[UILabel alloc]initWithFrame:CGRectMake(25,17, 100, 30)];
lbl1.text=@"User Name";
UILabel *lbl2 = [[UILabel alloc]initWithFrame:CGRectMake(25, 60, 80, 30)];
lbl2.text = @"Password";
UITextField *username=[[UITextField alloc]initWithFrame:CGRectMake(130, 17, 130, 30)];
UITextField *password=[[UITextField alloc]initWithFrame:CGRectMake(130, 60, 130, 30)];
lbl1.textColor = [UIColor whiteColor];
lbl2.textColor = [UIColor whiteColor];
[lbl1 setBackgroundColor:[UIColor clearColor]];
[lbl2 setBackgroundColor:[UIColor clearColor]];
username.borderStyle = UITextBorderStyleRoundedRect;
password.borderStyle = UITextBorderStyleRoundedRect;
[alt addSubview:lbl1];
[alt addSubview:lbl2];
[alt addSubview:username];
[alt addSubview:password];
[alt show];