Hi all,
thanks to the folks here I already learned quite a lot on my way to a cool iPhone App I am working on. However, I was wondering if anyone found out how to manipulate a UITableView, so that a cell (any or, if that is not possible, it could only be the selected one) can have a different height.
I know I can use something like this:
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 70;
}*/
To modify the whole TableView. But how would I address this to a single, specific cell?
The final goal is to achieve a "OS X dock"-like zoom effect when scrolling through a table...
Any help is appreciated.
Best regards, J*