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