I have aUITextView
. I would like to have a way of updating aUILabel
as the user times to indicate how many remaining characters are permitted?
In theViewController
theUITextView
is referenced as
IBOutlet UITextView *message;
I have tried looking at the show connections inspector and I don't see an edit changed option.
I looked at this example UITextField text change event
But it seemed to apply toUITextField
notUITextView
This should help:
You need to select the TextView that you are using and
control+drag
to the ViewController icon and select Delegate:The you should be able to get a result like this: