views:

71

answers:

1

I want to adjust each cell height according to the dynamic data that comes from web. So, how can I fit the height of cell according to each data ?

A: 

You should implement the following method in the delegate

   - (CGFloat)tableView:(UITableView *)tableView 
heightForRowAtIndexPath:(NSIndexPath *)indexPath

Have a look at the Apple documentation page here

epatel