20 lines
378 B
Objective-C
20 lines
378 B
Objective-C
//
|
|
// SVGAVectorLayer.h
|
|
// SVGAPlayer
|
|
//
|
|
// Created by 崔明辉 on 2017/2/20.
|
|
// Copyright © 2017年 UED Center. All rights reserved.
|
|
//
|
|
|
|
#import <QuartzCore/QuartzCore.h>
|
|
|
|
@class SVGAVideoSpriteFrameEntity;
|
|
|
|
@interface SVGAVectorLayer : CALayer
|
|
|
|
- (instancetype)initWithFrames:(NSArray<SVGAVideoSpriteFrameEntity *> *)frames;
|
|
|
|
- (void)stepToFrame:(NSInteger)frame;
|
|
|
|
@end
|