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.....
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.....
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