Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

Sai Kiran Dasika
PLUS
Sai Kiran Dasika
Courses Plus Student 7,278 Points

Dynamic height for UITableViewCell

Hey guys, I was trying to adjust the height through the interface builder but them seems to be that posts that have bigger amount to of text is clipping at the bottom of the cell. So if you guys know how to let a cell have its own dynamic height please feel free to comment !

1 Answer

Derek Saunders
Derek Saunders
5,167 Points

Hey to make sure your cell height is being executed add this line of code in your .m file. The number following return is your height. Hope this helps!

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
      return 55;
}