Animate TableViewRow or build a custom table?

You must Login before you can answer or comment on any questions.

Hi! I'm trying to animate the height of a TableViewRow, using the usual animate method doesn't work:

var anim = Ti.UI.createAnimation({ height:100, duration:250 });
row.animate(anim);
Setting the height like this: row.height = 100 does cause an animation, but it's not very pretty. Is there a way to do it or should I just build a completely custom tableview with a scrollView and multiple Views for each row, and then animate on each view as I normally would.

— asked 2 years ago by Luke Peek
2 Comments
  • ¿iOs or android? animating size behavior is very different on each platform, even more if you use a vertical layout.

    — commented 2 years ago by Javier Rayon

  • iPhone for now! but will be android eventually too!

    — commented 2 years ago by Luke Peek

Your Answer

Think you can help? Login to answer this question!