tags:

views:

48

answers:

1

Hi all ,

I am developing an application for iphone .I need to animately increase the width of a tableview cell when the user clicks on it and add a textfield into it .Please any one help me

Thanks in advance.....

+1  A: 

You can do

[UIView beginAnimation:nil context:nil]; //(dont remember the exact call here)
[UIView setAnimationDuration:seconds];
 //set your cells new width
[UIView commitAnimation];

the above code should do the trick

Daniel
This is right, however, you can't increase the size of a cell inside a table since the cell will be clipped to the table's bounds.
mahboudz
Right, i guess youd have to make the t able view wider too
Daniel