Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have used UITextView in my application. Now this might be a dumb question but how can I change the font size of text in it.

if any1 can help with this would be appreciated.

thanks

share|improve this question
how u want to change by coding or at designing time? – Stark Nov 18 '11 at 7:35
@stark by coding – MayurCM Nov 19 '11 at 6:09

3 Answers

up vote 1 down vote accepted

Try this...

yourtextview.setFont = [UIFont fontWithname:@"font name" size:size];
share|improve this answer
.setFont method is used inside bracket. – Sudesh Kumar Nov 18 '11 at 7:47

UITextView has a read-write font property declared:

@property(nonatomic,retain) UIFont *font;

The UIFont class declares a factory method:

+ (UIFont *)fontWithName:(NSString *)fontName size:(CGFloat)fontSize;

So create a new UIFont instance and then call -setFont: on your UITextView with the font instance.

share|improve this answer
Thanks mate solved my problem. – MayurCM Nov 19 '11 at 6:14

you have to set font by code

yourtextViewObject.font = [UIFont systemFontOfSize:14];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.