forked from tomcool420/SMFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSMFAnimation.h
More file actions
27 lines (21 loc) · 702 Bytes
/
SMFAnimation.h
File metadata and controls
27 lines (21 loc) · 702 Bytes
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
//
// SMFAnimation.h
// SMFramework
//
// Created by Kevin Bradley on 9/18/11.
// Copyright 2011 nito, LLC. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>
@interface SMFAnimation : NSObject {
}
+ (CAAnimationGroup *)zoomOutFadedToRect:(CGRect)outRect;
+ (CAAnimationGroup *)zoomInFadedToRect:(CGRect)inRect;
+ (CABasicAnimation *)fadeInAnimation;
+ (CABasicAnimation *)fadeOutAnimation;
+ (CABasicAnimation *)zoomOutToRect:(CGRect)outRect;
+ (CABasicAnimation *)zoomInToRect:(CGRect)inRect;
//deprecated
+ (CABasicAnimation *)zoomOutAnimation:(CATransform3D)zoomTransform;
+ (CABasicAnimation *)zoomInAnimation:(CATransform3D)zoomTransform;
@end