mirror of
https://github.com/averello/TimelineAnimations.git
synced 2026-03-01 18:23:27 +01:00
18 lines
313 B
Objective-C
18 lines
313 B
Objective-C
//
|
|
// TimelineAnimationWeakLayerBox.h
|
|
// TimelineAnimations
|
|
//
|
|
// Created by Georges Boumis on 18/05/2018.
|
|
//
|
|
|
|
@import Foundation;
|
|
|
|
@interface TimelineAnimationWeakLayerBox: NSObject
|
|
|
|
@property (nonatomic, weak) __kindof CALayer *layer;
|
|
|
|
- (instancetype)initWithLayer:(nonnull __kindof CALayer *)layer;
|
|
|
|
@end
|
|
|