Sha256: f568f81327679bf77e960fc31ebbc502d8cbf4cdda2b7329c2d5996b6ff78c2a
Contents?: true
Size: 774 Bytes
Versions: 3
Compression:
Stored size: 774 Bytes
Contents
// Created by Yang Meyer on 26.07.11. // Copyright 2011-2012 compeople AG. All rights reserved. #import <Foundation/Foundation.h> #import "CPAnimationStep.h" /** A CPAnimationSequence defines a sequence of CPAnimationStep objects, which can be `-run` animatedly or non-animatedly. CPAnimationSequence implements the Composite design pattern, with CPAnimationStep as the base class. The delay property will be interpreted from end point of the previous step. */ @interface CPAnimationSequence : CPAnimationStep #pragma mark - constructors + (id) sequenceWithSteps:(CPAnimationStep*)first, ... NS_REQUIRES_NIL_TERMINATION; #pragma mark - properties /** Animations steps, from first to last. */ @property (nonatomic, strong, readonly) NSArray* steps; @end
Version data entries
3 entries across 3 versions & 1 rubygems