I have created a UITextView *mytextview
. I want to get event when click textview before UIKeyboardWillShowNotification
delegate.
Now, When I click textview, is's call UIKeyboardWillShowNotification
. After that, it's call - (void)textViewDidBeginEditing:(UITextView *)textView
, it's not good!
I want to mytextview delegate
was called before call UIKeyboardWillShowNotification
How to I can resolve this problem