Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-2647] iOS: view.animate() callback not always invoked

GitHub Issuen/a
TypeBug
PriorityTrivial
StatusClosed
ResolutionNeeds more info
Resolution Date2012-07-26T14:49:21.000+0000
Affected Version/sRelease 1.5.1
Fix Version/sn/a
ComponentsiOS
Labelsn/a
Reportertom quas
AssigneeNeeraj Gupta
Created2011-04-15T03:25:46.000+0000
Updated2012-07-26T21:25:10.000+0000

Description

I got the following code:

var slide_out = Ti.UI.createAnimation({ bottom:-251 }); bday_pv.animate(slide_out, function() {

   log('>> never called');

);

the callback is never being called. Changing the code to

bday_pv.animate({ bottom:-251 }, function() {

   log('>> gotcha');

});

makes it work.

Comments

  1. Stephen Tramer 2012-07-26

    Requires *complete* & valid test case

    Ticket can be reopened when this is provided

JSON Source