Lottie - iOS 使用 (1)

2020-03-20  本文已影响0人  feb961880dc1

Podfile - Objective-C

pod 'lottie-ios', :git => 'https://github.com/airbnb/lottie-ios.git', :branch => 'lottie/objectiveC'

ViewController

#import <Lottie/LOTAnimationView.h>

LOTAnimationView *animation = [LOTAnimationView animationNamed:@"test"];
                        animation.backgroundColor = [UIColor redColor];
                        animation.frame = CGRectMake(100, 100, 100, 100);
                        [self.view addSubview:animation];
                        [animation play];
上一篇 下一篇

猜你喜欢

热点阅读