如何在swift 3中检测文本视图开始编辑和结束编辑

时间:2017-01-05 02:00:29

标签: swift textview

我在objective-c中找到了相关的问题和答案,但是我找不到一个正确的方法用swift?是否有方法检测文本视图与swift中提交的文本相同?

我想通过键盘解决隐藏文本视图的问题。为此,我需要一种方法来检测开始和结束编辑文本视图。

任何帮助将不胜感激。 注意:我正在使用swift 3.

2 个答案:

答案 0 :(得分:6)

正如Bawpotter所说,"使用UITextView的代理方法"。这是他们在Swift 3中的样子:

func textViewDidBeginEditing(_ textView: UITextView) {

  // Run code here for when user begins type into the text view

}

func textViewDidEndEditing(_ textView: UITextView) {

  // Run code here for when user ends editing text view

}

还要确保您的UITextView代理设置为self或您应用中的这些方法

答案 1 :(得分:4)

将ViewController类与UITextViewDelegate相符,然后编写 viewDidLoad()中的textView.delegate = self。之后,将textView的委托方法写为:

func textViewShouldBeginEditing(_ textView: UITextView) -> Bool {
     //  your code here
}

func textViewDidBeginEditing(_ textView: UITextView) {
    //  your code here
}

func textViewShouldEndEditing(_ textView: UITextView) -> Bool {
     //  your code here
}

func textViewDidEndEditing(_ textView: UITextView) { 
   // your code here
}