美文网首页
Lottie - iOS 使用 (1)

Lottie - iOS 使用 (1)

作者: feb961880dc1 | 来源:发表于2020-03-20 05:05 被阅读0次

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];

相关文章

网友评论

      本文标题:Lottie - iOS 使用 (1)

      本文链接:https://www.haomeiwen.com/subject/zuldyhtx.html