up vote 5 down vote favorite
6
share [g+] share [fb]

I have a UITextView added on my UIView. The textview added is not editable, it is just to display some data. The data displayed in the textview is dynamic. Thats is the number of lines is not fixed. It may vary. So if the number of line increases, the size of the textview also needs to be increased. I have no clue how to do this. Please give me some ideas.

UPDATE:

Here's what I'm doing:

UIView *baseView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 200)];
baseView.backgroundColor = [UIColor grayColor];
[window addSubview:baseView];

UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(5, 30, 100, 30)];
textView.autoresizingMask = UIViewAutoresizingFlexibleHeight;
textView.text = @"asdf askjalskjalksjlakjslkasj";
[textView sizeToFit];
[baseView addSubview:textView];
link|improve this question

feedback

3 Answers

up vote 11 down vote accepted

You can use setFrame: or sizeToFit.

UPDATE:

I use sizeToFit with UILabel, and it works just fine, but UITextView is a subclass of UIScrollView, so I can understand why sizeToFit doesn't produce the desired result.

You can still calculate the text height and use setFrame, but you might want to take advantage of UITextView's scrollbars if the text is too long.

Here's how you get the text height:

#define MAX_HEIGHT 2000

NSString *foo = @"Lorem ipsum dolor sit amet.";
CGSize size = [foo sizeWithFont:[UIFont systemFontOfSize:14]
              constrainedToSize:CGSizeMake(100, MAX_HEIGHT)
                  lineBreakMode:UILineBreakModeWordWrap];

and then you can use this with your UITextView:

[textView setFont:[UIFont systemFontOfSize:14]];
[textView setFrame:CGRectMake(5, 30, 100, size.height + 10)];

or you can do the height calculation first and avoid the setFrame line:

UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(5, 30, 100, size.height + 10)];
link|improve this answer
I already tried sizeToFit. It doesn't make any change – saikamesh Apr 8 '09 at 9:50
actually I don't know how to delete this answer and how to update my own question. There is no option for doing these. (FYI im using safari browser) – saikamesh Apr 8 '09 at 11:11
sorry! just now I saw the options for those – saikamesh Apr 8 '09 at 11:12
this works fine. but it needs the frame to be set initially. that is before ur piece of code I added textView = [[UITextView alloc] initWithFrame:CGRectMake(5.0, 30.0, 100, 30)];. – saikamesh Apr 8 '09 at 13:06
after adding the above only the textview becomes visible. and the last line in the text view is not displayed fully. only the upper half of it gets displayed. – saikamesh Apr 8 '09 at 13:08
show 8 more comments
feedback

There is an answer posted at http://stackoverflow.com/questions/50467/how-do-i-size-a-uitextview-to-its-content

CGRect frame = _textView.frame;
frame.size.height = _textView.contentSize.height;
_textView.frame = frame;
link|improve this answer
this is the better answer. – TomSwift Nov 10 '10 at 19:47
simpler and to the point – samiq Dec 5 '10 at 14:32
2  
frame.size.height = _textView.contentInset.top + _textView.contentInset.bottom + _textView.contentSize.height; – kpower Jul 13 '11 at 6:28
feedback

This works perfectly for me:

    #define MAX_HEIGHT 2000     
    CGSize size = [text sizeWithFont:[UIFont systemFontOfSize:14]
          constrainedToSize:CGSizeMake(100, MAX_HEIGHT)
              lineBreakMode:UILineBreakModeWordWrap];

    [textview setFont:[UIFont systemFontOfSize:14]];
    [textview setFrame:CGRectMake(45, 6, 100, size.height + 10)];
    textview.text = text;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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