All I like to do is a to create a UITableViewCell with a layout having two elements only like this:
"Text that can have a flexible length
with mutliple lines..."
"one fix line directly follwing the above text"
So Basically 1. Flexible text field with variable length where the complete text has to be seen wrapped in multiple lines if required 2. one line directly following
While I found heightForRowAtIndexPath
it still does not help how to do the layout of the second field in here...
-(void) layoutSubviews {
[super layoutSubviews];
[flexibleText setFrame:CGRectMake( 5.0, 5.0, 250.0, 40.0)]; //<- fexible height
[one_line setFrame:CGRectMake( 5.0, 42.0, 250.0, 20.0)]; //<- followed by this one liner
}