Hi, I have a table with property "hasChild"=true and I want to open a new window when the user click on a row. How to create an animation like the navigation group one? There are only 4 animation on iPhone.AnimationStyle!!
1 Answer
// this is not meant to be a complete example, but enough // to get you started window = Ti.UI.createWindow({ left : 320 top : 0, }); var slide_open = Ti.UI.createAnimation({ left : 0, duration : 500 }); window.animate(slide_open);See guide for more information...
http://docs.appcelerator.com/titanium/2.1/index.html#!/guide/Animation
Your Answer
Think you can help? Login to answer this question!