swe_mattias
swe_mattias

Reputation: 641

TextView how-to?

So I have an textView and need to have the same control over it as a regular textField. I am quite new to iPhone-programming so please be nice to me. :)

What I need is functions like: textFieldDidBeginEditing textFieldDidEndEditingWithoutText

How can this be done?

Upvotes: 0

Views: 181

Answers (2)

swe_mattias
swe_mattias

Reputation: 641

Thank you I did and what do you know... a delegate and everything stars working. Well I added this to viewDidLoad: textViewName.delegate = self;

Upvotes: 0

Eiko
Eiko

Reputation: 25632

UITextView has a delegate (UITextViewDelegate), which responds to begin/end of editing, text changes etc.

Just look up in the docs, it has complete information. :-)

Upvotes: 1

Related Questions