forked from caughtinflux/iOS-6-SpringBoard-Headers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SBAnimationStepper.h
37 lines (31 loc) · 1.13 KB
/
SBAnimationStepper.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
* Generated by class-dump 3.3.4 (64 bit).
*
* class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard.
*/
#import "NSObject.h"
@class CADisplayLink, NSArray, UIView;
@interface SBAnimationStepper : NSObject
{
id m_delegate;
UIView *m_view;
NSArray *m_animatingSubviews;
double m_duration;
float m_percentage;
CADisplayLink *m_displayLink;
double m_finishBackwardTimestamp;
double m_finishBackwardDuration;
float m_finishBackwardPercentage;
}
@property(nonatomic) float percentage; // @synthesize percentage=m_percentage;
@property(nonatomic) double duration; // @synthesize duration=m_duration;
@property(copy, nonatomic) NSArray *animatingSubviews; // @synthesize animatingSubviews=m_animatingSubviews;
@property(retain, nonatomic) UIView *view; // @synthesize view=m_view;
@property(nonatomic, assign) id delegate; // @synthesize delegate=m_delegate;
- (void)updateFinishBackwardToStart:(id)arg1;
- (void)finishBackwardToStart;
- (void)finishForwardToEnd;
- (void)stepAnimationsInView:(id)arg1 animatingSubviews:(id)arg2 duration:(double)arg3;
- (void)dealloc;
- (id)init;
@end