web-dev-qa-db-ja.com

タイプ「NSNotification.Name」にはメンバー「UITextField」がありません

Swift 4.2、次のエラーを取得すると、Swift 4。

タイプ「NSNotification.Name」にはメンバー「UITextField」がありません

これが私のエラーコードです。

NotificationCenter.default.addObserver(forName: NSNotification.Name.UITextField.textDidChangeNotification, object: textField, queue: OperationQueue.main) { (notification) in
            loginAction.isEnabled = textField.text != ""
        }

完全なコード:

@IBAction func alertWithLogin(){

    let alertController = UIAlertController(title: "Please Enter Credential", message: nil, preferredStyle: .alert)

    // ADD ACTIONS HANDLER
    let loginAction = UIAlertAction(title: "Login", style: .default) { (_) in

        let loginTextField = alertController.textFields![0] as UITextField
        let passwordTextField = alertController.textFields![1] as UITextField

        // do something with after login
    }
    loginAction.isEnabled = false
    alertController.addAction(loginAction)

    let cancelAction = UIAlertAction(title: "Cancel", style: .cancel) { (_) in
        // do something
    }
    alertController.addAction(cancelAction)

    // ADD TEXT FIELDS
    alertController.addTextField { (textField) in
        textField.placeholder = "Email"
    }
    alertController.addTextField { (textField) in
        textField.placeholder = "Password"
        textField.isSecureTextEntry = true

        // enable login button when password is entered
        NotificationCenter.default.addObserver(forName: NSNotification.Name.UITextField.textDidChangeNotification, object: textField, queue: OperationQueue.main) { (notification) in
            loginAction.isEnabled = textField.text != ""
        }
    }

    // PRESENT
    present(alertController, animated: true)
}

enter image description here

11
Krunal

textDidChangeNotificationUITextField(およびUITextView)のメンバーです。

NotificationCenter.default.addObserver(
    self,
    selector: #selector(self.keyboardDidShow(notification:)),
    name: UITextField.textDidChangeNotification,
    object: nil)
30
rmaddy

私は同じ問題に直面しました、

これが最も簡単な解決策です:

forName: NSNotification.Name.UITextField.textDidChangeNotificationを使用する代わりに

forName:パラメーターで次のように使用します。

NotificationCenter.default.addObserver(forName: UITextField.textDidChangeNotification, object: textField, queue: OperationQueue.main) { (notification) in
//Your code goes here...
        }
1
iHarshil
        NotificationCenter.default.addObserver(forName: Notification.Name.UITextFieldTextDidChange, object: textField, queue: OperationQueue.main) { (notification) in
            //...
    }

Swift sdk、すべての通知名は構造体の拡張である必要があります:Notification.Name

したがって、Notification.Nameを使用する場合は、クラス名(exc.UITextField)を無視し、「Notification.Name」を入力する必要があります。次に、名前の一部(「TextF」など)を入力し、escを使用してオートコンプリートを表示します

0
Sven Shao