MSFAnimationStyle
Objective-C
@interface MSFAnimationStyle : NSObject {
void *swigCPtr;
BOOL swigCMemOwn;
}
Swift
class MSFAnimationStyle : NSObject
A class describing animation effect.
-
Checks if this object is equal to the specified object.
Declaration
Objective-C
- (BOOL)isEqual:(id)object;Swift
func isEqual(_ object: Any!) -> BoolParameters
objectThe reference object.
Return Value
True when objects are equal, false otherwise.
-
Returns the hash value of this object.
Declaration
Objective-C
- (NSUInteger)hash;Swift
func hash() -> UIntReturn Value
The hash value of this object.
-
Returns the relative speed of the animation.
Declaration
Objective-C
- (float)getRelativeSpeed;Swift
func getRelativeSpeed() -> FloatReturn Value
The relative speed of the animation (1.0 corresponds to the default speed).
-
Returns the phase-in duration of the animation.
Declaration
Objective-C
- (float)getPhaseInDuration;Swift
func getPhaseInDuration() -> FloatReturn Value
The phase-in duration of the animation in seconds.
-
Returns the phase-out duration of the animation.
Declaration
Objective-C
- (float)getPhaseOutDuration;Swift
func getPhaseOutDuration() -> FloatReturn Value
The phase-out duration of the animation in seconds.
-
Returns the fade animation type.
Declaration
Objective-C
- (enum MSFAnimationType)getFadeAnimationType;Swift
func getFadeAnimationType() -> MSFAnimationTypeReturn Value
The type of the fade animation.
-
Returns the size-related animation type.
Declaration
Objective-C
- (enum MSFAnimationType)getSizeAnimationType;Swift
func getSizeAnimationType() -> MSFAnimationTypeReturn Value
The type of the size-related animation.
-
Undocumented
Declaration
Objective-C
-(void)dealloc;Swift
func dealloc()