vote up 2 vote down star
3

Hi everyone,

I want to create a UITableView with varying row heights, and I'm trying to accomplish this by creating UILabels inside the UITableViewCells.

Here's my code so far:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
	static NSString *MyIdentifier = @"EntryCell";
	UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
	if (cell == nil) {
		cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:MyIdentifier] autorelease];
	}

    UILabel *textView = [[UILabel alloc] initWithFrame:CGRectMake(10, 0, 300, 40)];
	textView.numberOfLines = 0;
	textView.text = [entries objectAtIndex:[indexPath row]];
	[cell.contentView addSubview:textView];
	[textView release];

	return cell;
}

This gives me 2 lines of text per cell. However, each "entry" has a different number of lines, and I want the UITableViewCells to resize automatically, wrapping text as necessary, without changing the font size.

[textView sizeToFit] and/or [cell sizeToFit] don't seem to work.

Here's how I want the UITableView to look:

----------------
Lorem ipsum
----------------
Lorem ipsum
Lorem ipsum
----------------
Lorem ipsum
Lorem ipsum
Lorem ipsum
----------------
Lorem ipsum
----------------
Lorem ipsum
Lorem ipsum
----------------

Does anyone know how to do this properly?

Thanks.

flag

64% accept rate

2 Answers

vote up 6 vote down check

The UITableViewDelegate defines an optional method heightForRowAtIndexPath, which will get you started. You then need to use sizeWithFont.

There is some discussion of your precise problem here:

http://www.v2ex.com/2008/09/18/how-to-make-uitableviewcell-have-variable-height/

Text sizing was also discussed in this thread

link|flag
that worked great, thanks. though I used sizeToFit instead of sizeWithFont. – Can Berk Güder Sep 26 '08 at 16:48
vote up 0 vote down

textView.numberOfLines = 2? numberOflines sets maximum nuber of lines so maybe 2 will owrk for u?

link|flag

Your Answer

Get an OpenID
or

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