非viewcontroller类中的UITextViewDelegate

时间:2015-10-15 08:26:11

标签: ios swift swift2

我试图创建一个只用于实现UITextViewDelegate的类,但由于某种原因,方法shouldChangeTextInRange从未被调用,这是我的代码:

public class TTextViewDelegate: NSObject, UITextViewDelegate {

public func textView(textView: UITextView, shouldChangeTextInRange range: NSRange, replacementText text: String) -> Bool {

    print("!!!!!! Should change text in range: \(text)")

    return true
  }

}

在我的viewcontroller中:

textView.delegate = TTextViewDelegate()

为什么UITextViewDelegate仅在视图控制器中实现时才有效?

1 个答案:

答案 0 :(得分:0)

  

public func textView(textView:UITextView,shouldChangeTextInRange   范围:NSRange,replacementText text:String) - >布尔{

只要用户键入新字符或删除现有字符,文本视图就会调用此方法。此方法的实现是可选的。在将文本提交到文本视图存储之前,可以使用此方法替换文本。例如,拼写检查程序可能会使用此方法用拼写错误的拼写替换拼写错误的单词。

范围

当前选择范围。如果范围的长度为0,则范围反映当前插入点。如果用户按下Delete键,则范围的长度为1,空字符串对象将替换该单个字符。

文字

要插入的文字。