質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.35%
iOS

iOSとは、Apple製のスマートフォンであるiPhoneやタブレット端末のiPadに搭載しているオペレーションシステム(OS)です。その他にもiPod touch・Apple TVにも搭載されています。

Xcode

Xcodeはソフトウェア開発のための、Appleの統合開発環境です。Mac OSXに付随するかたちで配布されています。

Swift

Swiftは、アップルのiOSおよびOS Xのためのプログラミング言語で、Objective-CやObjective-C++と共存することが意図されています

Q&A

解決済

1回答

1925閲覧

alertで2つのテキストフィールドの未入力を防ぎたい

nishimu

総合スコア26

iOS

iOSとは、Apple製のスマートフォンであるiPhoneやタブレット端末のiPadに搭載しているオペレーションシステム(OS)です。その他にもiPod touch・Apple TVにも搭載されています。

Xcode

Xcodeはソフトウェア開発のための、Appleの統合開発環境です。Mac OSXに付随するかたちで配布されています。

Swift

Swiftは、アップルのiOSおよびOS Xのためのプログラミング言語で、Objective-CやObjective-C++と共存することが意図されています

0グッド

0クリップ

投稿2020/04/13 08:26

編集2020/04/13 08:34

前提・実現したいこと

tableviewのcellをタップしたらalertが出るようにし、そのalertにはtextFieldを2つ配置します。2つのtextFieldに文字が入力されているのが確認できたら、更新ボタンを押せるようにしたいです。更新ボタンを押すとcloud firestoreを使ってInt値でデータを飛ばす仕組みなので(ここではコードを一部省略しています)空入力をふせぎたいです。エラーの解決方法をご教授願います

発生している問題・エラーメッセージ

エラー発生部分

@objc func alertTextFieldDidChange(_ sender: UITextField) { if waitTimeTextField!.text!.count > 0 && ninnzuuTextField!.text!.count > 0 { alert?.actions[0].isEnabled = true } }

エラーメッセージ

Unexpectedly found nil while unwrapping an Optional value

該当のソースコード

var alert : UIAlertController? @objc func alertTextFieldDidChange(_ sender: UITextField) { if waitTimeTextField!.text!.count > 0 && ninnzuuTextField!.text!.count > 0 { alert?.actions[0].isEnabled = true } } func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { tableView.deselectRow(at: indexPath, animated: true) //1. Create the alert controller. alert = UIAlertController(title: "待ち時間・人数の更新", message: "待ち時間・人数を入力してください", preferredStyle: .alert) //2. Add the text field. If empty, the target action will disable yesAction alert?.addTextField(configurationHandler: { (textField) -> Void in textField.placeholder = "待ち時間" textField.keyboardType = UIKeyboardType.numberPad textField.addTarget(self, action: #selector(self.alertTextFieldDidChange(_:)), for: .editingChanged) }) alert?.addTextField(configurationHandler: { (textField) -> Void in textField.placeholder = "人数" textField.keyboardType = UIKeyboardType.numberPad textField.addTarget(self, action: #selector(self.alertTextFieldDidChange(_:)), for: .editingChanged) }) //3. Grab the value from the text field. let yesAction = UIAlertAction(title: "更新", style: .default, handler: { (action) -> Void in //let textField = self.alert?.textFields![0] // Do anything you need here }) let cancelAction: UIAlertAction = UIAlertAction(title: "キャンセル",style: .default, handler:{ (action) -> Void in print("キャンセル") }) yesAction.isEnabled = false cancelAction.isEnabled = true alert?.addAction(cancelAction) alert?.addAction(yesAction) // 4. Present the alert. self.present(alert!, animated: true, completion: nil) }

参考にさせていただいたサイト

いろんなサイトを巡って力の尽くす限り試しました。
以下参考にしたサイトです
https://forums.developer.apple.com/thread/126195
https://forums.developer.apple.com/thread/85814
https://teratail.com/questions/45218
https://stackoverflow.com/questions/49477674/how-to-disable-uialertaction-depending-on-uitextfield

補足情報(FW/ツールのバージョンなど)

Xcode11.4

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

ベストアンサー

こんなんで、

swift

1import UIKit 2 3class ViewController: UIViewController, UITextFieldDelegate { 4 5 var alert: UIAlertController? 6 7 override func viewDidLoad() { 8 super.viewDidLoad() 9 } 10 11 @IBAction func btnDidTap(_ sender: Any) { 12 13 let alert 14 = UIAlertController(title: "title", 15 message: "message", 16 preferredStyle: .alert) 17 18 alert.addTextField(configurationHandler: { (tf) in 19 tf.delegate = self 20 }) 21 22 alert.addTextField(configurationHandler: { (tf) in 23 tf.delegate = self 24 }) 25 26 let okAction 27 = UIAlertAction(title: "OK" ,style: .default, handler: nil) 28 okAction.isEnabled = false 29 30 let cancelAction 31 = UIAlertAction(title: "Cancel", style: .cancel, handler: nil) 32 33 alert.addAction(okAction) 34 alert.addAction(cancelAction) 35 36 self.alert = alert 37 38 self.present(alert, animated: true, completion: nil) 39 } 40 41 func textField(_ textField: UITextField, 42 shouldChangeCharactersIn range: NSRange, 43 replacementString string: String) -> Bool 44 { 45 DispatchQueue.main.asyncAfter(deadline: .now() + 0.01) { 46 let existsFirstText: Bool 47 = !(self.alert?.textFields?.first?.text?.isEmpty ?? true) 48 let existsSecondText: Bool 49 = !(self.alert?.textFields?.last?.text?.isEmpty ?? true) 50 51 self.alert?.actions.first?.isEnabled 52 = existsFirstText && existsSecondText 53 } 54 return true 55 } 56 57}

適当な!の連発をやめれば質問のコードのままでも動くと思いますよ。

投稿2020/04/13 10:43

編集2020/04/20 09:49
退会済みユーザー

退会済みユーザー

総合スコア0

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

nishimu

2020/04/14 06:26

お忙しい中ご回答いただきありがとうございます。オプショナル型について再度おさらいをしたいと思いました。 追記 alertTextFieldDidChangeはテキストフィールドに初めて文字が入力された時しか呼ばれず、目的を達成することができませんでした。ですがtyobigorou様のご回答の方法で目的を達成できました。ありがとうございました。
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.35%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問