I know that I can check if it is editing UITextViewwith textViewDidBeginEditing:, but I want to check if it is edited with the if statement to do this?
UITextView
textViewDidBeginEditing:
Use a method isFirstResponder, for example:
isFirstResponder
if ([myTextView isFirstResponder]){ // do something... }