JgdGuy
JgdGuy

Reputation: 173

Change the size of uitextview's text dynamically

I am trying to change the font size of a UITextView field's text by clicking on '+' and '-' buttons. I am unable to access the font size of the textfield. Please help !

Upvotes: 0

Views: 593

Answers (1)

Chris Wagner
Chris Wagner

Reputation: 21013

UITextView *textView = ...;
textView.font = [textView.font fontWithSize:newSize]

Upvotes: 3

Related Questions