Метод, связанный с кнопкой в ячейке, должен выглядеть следующим образом:
- (IBAction)myMethod:(id)sender;
В его реализации вы можете попробовать это:
UIButton *button=sender;
UITableViewCell *cell=[button superview]; //this should get you the contentView OR the UITableViewCell
//now you can increase cell to display all its content
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[cell setFrame:yourFrame];
[UIView commitAnimations];
Я не уверен, что [button superview]
получить ячейку таблицы или свойство contentView ячейки, потому что теперь я не могу попробовать этот код.