mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 03:58:08 +00:00
Continue chat stuff Fix viewWillAppear without viewDidLoad called with UICompositeController
26 lines
695 B
Objective-C
Executable file
26 lines
695 B
Objective-C
Executable file
|
|
// 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.
|
|
*/
|
|
@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
|