Updated 31 October 2021
In this blog, we are going to learn about Lottie animation in Swift. Animation plays a very important role in providing a better user interface experience in your iOS app. A Lottie is an animation file that you can download in various formats and can use in your iOS project.
In this blog, we are going to learn about the integration of the Lottie Animation in Swift. Please follow the steps mention below.
Create a project in Xcode and name it as per your preference.
Create a pod file and install the Lottie pods.
1 |
pod 'lottie-ios' |
Now download a Lottie animation file in JSON format from here and add it to your project.
Create a view controller and add the code mentioned below.
1 |
import Lottie |
Now add an animation view in your view controller.
1 2 |
private var lottieAnimation: AnimationView? private var backLottieAnimation: AnimationView? |
Add the file JSON file downloaded to the animation views.
1 2 3 4 5 6 7 8 |
// background Lottie Animation self.backLottieAnimation = AnimationView(name: "cautionWetPaint") self.backLottieAnimation?.frame = self.view.bounds self.backLottieAnimation?.contentMode = .scaleToFill self.backLottieAnimation?.center = self.view.center self.backLottieAnimation?.loopMode = .playOnce self.view.addSubview(self.backLottieAnimation!) |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
playAnimation() // Top Lottie Animation self.lottieAnimation = AnimationView(name: "bloodtransfusion") self.lottieAnimation?.frame = view.bounds self.lottieAnimation?.contentMode = .scaleAspectFill self.lottieAnimation?.frame = CGRect(x: 0, y: 0, width: 200, height: 300) self.lottieAnimation?.center = self.view.center self.view.addSubview(self.lottieAnimation!) self.lottieAnimation?.loopMode = .loop self.lottieAnimation?.play() |
Create a function and use the completion of the play. So, we can perform other stuff after the completion of the animation.
1 2 3 4 5 6 7 8 9 |
func playAnimation() { self.backLottieAnimation?.play(completion: { played in if played == true { print("Navigate here") }else { self.playAnimation() } }) } |
We have successfully integrated Lottie Animation into our iOS project. Please refer to my other blogs from here.
If you have more details or questions, you can reply to the received confirmation email.
Back to Home
Be the first to comment.