我正在为iphone开发一个应用程序。当用户点击它并在其中添加一个文本字段时,我需要动态增加tableview单元格的宽度。请任何人帮助我
提前致谢.....
答案 0 :(得分:1)
你可以做到
[UIView beginAnimation:nil context:nil]; //(dont remember the exact call here)
[UIView setAnimationDuration:seconds];
//set your cells new width
[UIView commitAnimation];
上面的代码应该做的伎俩