| 12345678910111213141516171819202122 |
- //
- // AnimationHelper.h
- // KulexiuForStudent
- //
- // Created by 王智 on 2022/7/20.
- //
- #import <Foundation/Foundation.h>
- #import <Lottie/Lottie.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface AnimationHelper : NSObject
- /// lottie动画
- /// @param currentAnimationView 当前动画视图
- /// @param index 当前动画视图索引
- + (void)lottieAnimation:(UIView *)currentAnimationView index:(NSInteger)index;
- @end
- NS_ASSUME_NONNULL_END
|