20 lines
561 B
Objective-C
Executable File
20 lines
561 B
Objective-C
Executable File
//
|
|
// DGActivityIndicatorAnimation.h
|
|
// DGActivityIndicatorExample
|
|
//
|
|
// Created by Danil Gontovnik on 8/10/16.
|
|
// Copyright © 2016 Danil Gontovnik. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "DGActivityIndicatorAnimationProtocol.h"
|
|
|
|
@interface DGActivityIndicatorAnimation : NSObject <DGActivityIndicatorAnimationProtocol>
|
|
|
|
- (CABasicAnimation *)createBasicAnimationWithKeyPath:(NSString *)keyPath;
|
|
- (CAKeyframeAnimation *)createKeyframeAnimationWithKeyPath:(NSString *)keyPath;
|
|
- (CAAnimationGroup *)createAnimationGroup;
|
|
|
|
@end
|