美文网首页
swift 当UITextField的text有内容改变时机添加

swift 当UITextField的text有内容改变时机添加

作者: 只会ctrl_c_v | 来源:发表于2016-07-06 13:31 被阅读743次

    使用通知:

    NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(AddView.textChanges), name: UITextFieldTextDidChangeNotification, object: nil)

    func textChanges(){

    guard self.searchTextField.text != "" else{return}

    print("内容变化所触发")

    }

    还可以使用为textfield添加 addtaget 来触发

    相关文章

      网友评论

          本文标题:swift 当UITextField的text有内容改变时机添加

          本文链接:https://www.haomeiwen.com/subject/sgskjttx.html