Class CABasicAnimation

CPObject
    extended byCAAnimation
        extended byCAPropertyAnimation
            extended byCABasicAnimation

@implementation CABasicAnimation : CAPropertyAnimation

A CABasicAnimation is a simple animation that moves a CALayer from one point to another over a specified period of time.


Method Summary
-(id)byValue
          Returns the animation's byValue.
-(id)fromValue
          Returns the animation's starting position.
-(void)setByValue:(id)aValue
          Sets the optional byValue for animation interpolation.
-(void)setFromValue:(id)aValue
          Sets the starting position for the animation.
-(void)setToValue:(id)aValue
          Sets the ending position for the animation.
-(id)toValue
          Returns the animation's ending position.

Methods inherited from class CPObject
initialize, alloc, class, instanceMethodForSelector, instancesRespondToSelector, isSubclassOfClass, load, new, setVersion, superclass, version, init, autorelease, awakeAfterUsingCoder, class, classForCoder, classForKeyedArchiver, className, copy, dealloc, description, doesNotRecognizeSelector, forwardInvocation, hash, isEqual, isKindOfClass, isMemberOfClass, isProxy, methodForSelector, methodSignatureForSelector, mutableCopy, performSelector, performSelector, performSelector, release, replacementObjectForArchiver, replacementObjectForCoder, replacementObjectForKeyedArchiver, respondsToSelector, retain, self, superclass

Methods inherited from class CAAnimation
animation, defaultValueForKey, init, delegate, isRemovedOnCompletion, removedOnCompletion, runActionForKey, setDelegate, setRemovedOnCompletion, shouldArchiveValueForKey, timingFunction

Methods inherited from class CAPropertyAnimation
animationWithKeyPath, additive, cumulative, isAdditive, isCumulative, keyPath, setAdditive, setCumulative, setKeyPath


Method Detail

byValue

-(id)byValue
Returns the animation's byValue.

fromValue

-(id)fromValue
Returns the animation's starting position.

setByValue

-(void)setByValue:(id)aValue
Sets the optional byValue for animation interpolation.
Parameters:
aValue - the byValue

setFromValue

-(void)setFromValue:(id)aValue
Sets the starting position for the animation.
Parameters:
aValue - the animation starting position

setToValue

-(void)setToValue:(id)aValue
Sets the ending position for the animation.
Parameters:
aValue - the animation ending position

toValue

-(id)toValue
Returns the animation's ending position.

Created on Sat Sep 13 14:15:43 PDT 2008