AnimationHelper.h 433 B

12345678910111213141516171819202122
  1. //
  2. // AnimationHelper.h
  3. // KulexiuForStudent
  4. //
  5. // Created by 王智 on 2022/7/20.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import <Lottie/Lottie.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface AnimationHelper : NSObject
  11. /// lottie动画
  12. /// @param currentAnimationView 当前动画视图
  13. /// @param index 当前动画视图索引
  14. + (void)lottieAnimation:(UIView *)currentAnimationView index:(NSInteger)index;
  15. @end
  16. NS_ASSUME_NONNULL_END