(iOS) Implement heightForRowAtIndexPath
This commit is contained in:
parent
36855efb63
commit
0e20e28244
|
@ -568,6 +568,11 @@ titleForHeaderInSection:(NSInteger)section
|
|||
return [[self itemForIndexPath:indexPath] cellForTableView:tableView];
|
||||
}
|
||||
|
||||
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
|
||||
{
|
||||
return UITableViewAutomaticDimension;
|
||||
}
|
||||
|
||||
- (void)tableView:(UITableView *)tableView
|
||||
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue