I’m creating a new class – UIMyTextView that inherits from UITextView.
I’d like this class to send new kinds of events, that I will then connect using IBuilder to the appropriate IBActions.
How to do that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
UITextViewdoes not inherit fromUIControl. This means that it can’t be considered as UI control that can send actions to other responders usingUIControlEvent.See UIControl.h for more information.