16 lines
412 B
Objective-C
Executable File
16 lines
412 B
Objective-C
Executable File
//
|
|
// DGActivityIndicatorAnimationProtocol.h
|
|
// DGActivityIndicatorExample
|
|
//
|
|
// Created by Danil Gontovnik on 5/23/15.
|
|
// Copyright (c) 2015 Danil Gontovnik. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@protocol DGActivityIndicatorAnimationProtocol <NSObject>
|
|
|
|
- (void)setupAnimationInLayer:(CALayer *)layer withSize:(CGSize)size tintColor:(UIColor *)tintColor;
|
|
|
|
@end |