mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
72 lines
2.1 KiB
Objective-C
72 lines
2.1 KiB
Objective-C
/**
|
|
Copyright (c) 2014-present, Facebook, Inc.
|
|
All rights reserved.
|
|
|
|
This source code is licensed under the BSD-style license found in the
|
|
LICENSE file in the root directory of this source tree. An additional grant
|
|
of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import <LegacyComponents/POPPropertyAnimation.h>
|
|
|
|
/**
|
|
@abstract A concrete basic animation class.
|
|
@discussion Animation is achieved through interpolation.
|
|
*/
|
|
@interface POPBasicAnimation : POPPropertyAnimation
|
|
|
|
/**
|
|
@abstract The designated initializer.
|
|
@returns An instance of a basic animation.
|
|
*/
|
|
+ (instancetype)animation;
|
|
|
|
/**
|
|
@abstract Convenience initializer that returns an animation with animatable property of name.
|
|
@param name The name of the animatable property.
|
|
@returns An instance of a basic animation configured with specified animatable property.
|
|
*/
|
|
+ (instancetype)animationWithPropertyNamed:(NSString *)name;
|
|
|
|
/**
|
|
@abstract Convenience constructor.
|
|
@returns Returns a basic animation with kCAMediaTimingFunctionDefault timing function.
|
|
*/
|
|
+ (instancetype)defaultAnimation;
|
|
|
|
/**
|
|
@abstract Convenience constructor.
|
|
@returns Returns a basic animation with kCAMediaTimingFunctionLinear timing function.
|
|
*/
|
|
+ (instancetype)linearAnimation;
|
|
|
|
/**
|
|
@abstract Convenience constructor.
|
|
@returns Returns a basic animation with kCAMediaTimingFunctionEaseIn timing function.
|
|
*/
|
|
+ (instancetype)easeInAnimation;
|
|
|
|
/**
|
|
@abstract Convenience constructor.
|
|
@returns Returns a basic animation with kCAMediaTimingFunctionEaseOut timing function.
|
|
*/
|
|
+ (instancetype)easeOutAnimation;
|
|
|
|
/**
|
|
@abstract Convenience constructor.
|
|
@returns Returns a basic animation with kCAMediaTimingFunctionEaseInEaseOut timing function.
|
|
*/
|
|
+ (instancetype)easeInEaseOutAnimation;
|
|
|
|
/**
|
|
@abstract The duration in seconds. Defaults to 0.4.
|
|
*/
|
|
@property (assign, nonatomic) CFTimeInterval duration;
|
|
|
|
/**
|
|
@abstract A timing function defining the pacing of the animation. Defaults to nil indicating pacing according to kCAMediaTimingFunctionDefault.
|
|
*/
|
|
@property (strong, nonatomic) CAMediaTimingFunction *timingFunction;
|
|
|
|
@end
|