我在一個自定義的UITextView的初始化稱之爲:的UITextView UITextViewTextDidChangeNotification沒有呼籲文字的綱領性變化
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(textChanged:)
name:UITextViewTextDidChangeNotification
object:self];
的方法textChanged
當我編程設置textView.text = @""
任何想法不叫我做錯了什麼?
不需要觀察者使用[yourTextView addTarget:self action:@selector(textChanged :) forControlEvents:UIControlEventEditingChanged]; –
爲什麼你使用通知而不是委託方法 –
我必須在文本視圖中使用它以及它的超級視圖 –