Reputation: 375
I've got a UILabel whit a bunch of text but the text is stopping after xx lines. My question: Can i connect a scroll to a UILabel OR can i connect it to a textview?
What is the best way to display a large text (text = from JSON feed)
Upvotes: 0
Views: 1323
Reputation: 31026
A UITextView is scrollable and, if you'd like it to act more like a label, you can turn off editing.
Upvotes: 1