-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSBAnimationStepper.h
38 lines (32 loc) · 1.16 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
37
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 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;
double m_percentage;
CADisplayLink *m_displayLink;
double m_finishBackwardTimestamp;
double m_finishBackwardDuration;
double m_finishBackwardPercentage;
}
@property(nonatomic) double 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) id delegate; // @synthesize delegate=m_delegate;
- (void)didFinishBackwardToStart;
- (void)updateFinishBackwardToStart:(id)arg1;
- (void)finishBackwardToStart;
- (void)finishForwardToEnd;
- (void)stepAnimationsInView:(id)arg1 animatingSubviews:(id)arg2 duration:(double)arg3;
- (void)dealloc;
- (id)init;
@end