Reputation: 16276
I need to write on a TextView dynamically, actually my app retrieve data from database and need to display it on a UITextView, can any one help me there?
Upvotes: 2
Views: 6700
Reputation: 10412
You need to:
textView.text = @"your string of text";
where textView is your UITextView object.
Upvotes: 2