Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TIMOB-10010][TIMOB-10047] Modernize animation, fix autoreverse problems #2630

Merged
merged 6 commits into from
Jul 25, 2012
10 changes: 4 additions & 6 deletions iphone/Classes/TiAnimation.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,8 @@
UIView* animatedView;

// for autoreverse
LayoutConstraint autoreverseLayout;
UIView *autoreverseView;
id transformMatrix;
TiAnimation* reverseAnimation;
BOOL isReverse;
}

/**
Expand All @@ -105,10 +104,9 @@
@property(nonatomic,assign,readwrite) NSObject<TiAnimationDelegate> *delegate;

@property(nonatomic,readwrite,assign) UIView* animatedView;
@property(nonatomic,readwrite,assign) UIView* autoreverseView;
@property(nonatomic,readwrite,assign) id transformMatrix;
@property(nonatomic,readonly) LayoutConstraint autoreverseLayout;
@property(nonatomic,readonly) ListenerEntry* callback;
@property(nonatomic,readwrite,assign) TiAnimation* reverseAnimation;
@property(nonatomic,readwrite,assign) BOOL isReverse;

// animatable properties against what is being animated
@property(nonatomic,retain,readwrite) NSNumber *zIndex;
Expand Down