Malloc
Malloc

Reputation: 16276

How to write text on UITextView programmatically

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

Answers (1)

Matteo Alessani
Matteo Alessani

Reputation: 10412

You need to:

textView.text = @"your string of text";

where textView is your UITextView object.

Upvotes: 2

Related Questions