我創建了一個UITextView *mytextview
。我想在UIKeyboardWillShowNotification
代表之前點擊textview時獲得活動。IOS textView代理
現在,當我點擊textview時,是叫UIKeyboardWillShowNotification
。之後,它叫- (void)textViewDidBeginEditing:(UITextView *)textView
,這不好!
我想mytextview delegate
呼叫UIKeyboardWillShowNotification
之前被稱爲如何,我可以解決這個問題
使用' - (BOOL)textViewShouldBeginEditing:(UITextView *)textView' –