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 a fixed size UITextView say width and height of 150,150.

The purpose is to display the thought of the day. Please note the size need to remain constant and I cant change it.

Now The length of the thought string varies with respect to thought. What I want to do is change the size of font of the text to make sure it dont show any empty space in UITextView if length is small or it dont show the scroll if its bigger.

So how to vary the font of UITextView according to the length of thought string.

What is wrong with the following code:

CGSize size;
    BOOL run=TRUE;
    CGSize txtViewSize = self.txt_tipView.frame.size;
    while(run){

    	size = [self.txt_tipView.text sizeWithFont:[UIFont systemFontOfSize: currentSize] constrainedToSize:txtViewSize lineBreakMode:UILineBreakModeWordWrap];
    	if((size.width<=txtViewSize.width) && (size.height<=txtViewSize.height))
    		run = FALSE;
    	else
    		currentSize--;
    }
    self.txt_tipView.font = [UIFont fontWithName:@"Helvetica" size:currentSize];//[UIFont boldSystemFontOfSize:12];

What happens is the size of the text in TextView is always 60. That is each line has only one word.

share|improve this question

2 Answers

Set an implicit font size, let's say the largest acceptable font you could use. Then, make a measurement of your text size with:

CGSize size = [text sizeWithFont:[UIFont systemFontOfSize: currentSize] constrainedToSize: maxTextSize lineBreakMode:UILineBreakModeWordWrap];

If the size you obtain is off the acceptable bounds, adjust the font size and repeat. The maxTextSize should be the size of your UITextView.

share|improve this answer
can you add some more elaboration to the code. Like how exactly I need to do it. I am doing it following way CGSize size; BOOL run=TRUE; CGSize txtViewSize = self.txt_tipView.frame.size; while(run){ size = [self.txt_tipView.text sizeWithFont:[UIFont systemFontOfSize: currentSize] constrainedToSize:txtViewSize lineBreakMode:UILineBreakModeWordWrap]; if((size.width<=txtViewSize.width) && (size.height<=txtViewSize.height)) run = FALSE; else currentSize--; } self.txt_tipView.font = [UIFont fontWithName:@"Helvetica" size:currentSize]; – rkb Oct 21 '09 at 21:28
Looks ok to me. Any problems with it? – luvieere Oct 21 '09 at 21:35
1  
If it doesn't work out with a UITextView, perhaps you should test it with a UILabel... that is if the only function you expect out of it is displaying the thought of the day. – luvieere Oct 21 '09 at 21:48
Yeah it dont correct the size instead it ends up with with the font size of 60 showing one word in each line. – rkb Oct 21 '09 at 21:49
Is your whole text displayed, or does it get truncated? Do all the words show up one on each line, with font 60, or just a few of them? – luvieere Oct 21 '09 at 21:53
show 6 more comments

See UITextField's adjustsFontSizeToWidth property.

share|improve this answer
4  
This question is referring to UITextView and not UITextField. – bentford Dec 22 '09 at 3:05

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.