クリックしたときにセルを大きくするにはどうすればよいですか?
これは、動作していない私の現在のコードです。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [feedsTableView dequeueReusableCellWithIdentifier:@"MyIdentifier"];
static NSString *CellIdentifier = @"Cell";
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] ;
ell.frame = CGRectMake(cell.frame.origin.x, cell.frame.origin.y, 320.0, 250.0);
NSLog(@"[CELL CLICK] %i", indexPath.row);
[feedsTableView beginUpdates];
[feedsTableView endUpdates];
[feedsTableView deselectRowAtIndexPath:indexPath animated:YES];
}