Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Human interface guide
- 리펙터링
- Protocol
- ribs
- swiftUI
- 클린 코드
- uitableview
- UICollectionView
- combine
- UITextView
- Observable
- 리팩토링
- Refactoring
- Clean Code
- rxswift
- ios
- 스위프트
- HIG
- collectionview
- SWIFT
- map
- RxCocoa
- uiscrollview
- 애니메이션
- 리펙토링
- swift documentation
- clean architecture
- tableView
- Xcode
- MVVM
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] Lottie 프레임워크 (애니메이션) 본문
Lottie 란
- Json 기반의 Adobe After Effects 에니메이션 구문을 분석하여 화면에 에니메이션을 렌더링해주는 프레임워크
- 플랫폼이 달라도 iOS, Android, Web 공통사용 가능
사용방법
- 종속성
pod 'lottie-ios'
- resource 무료 제공 사이트: lottiefiles.com/recent
- .json 파일을 받은 후 프로젝트에 추가
- 아래와 같이 사용 가능
import UIKit
import Lottie
class ViewController: UIViewController {
@IBOutlet weak var view1: UIView!
override func viewDidLoad() {
super.viewDidLoad()
let animationView = AnimationView(name: R.file.giftBoxJson.name) // R.swift 프레임워크 적용
animationView.frame = view1.bounds
animationView.contentMode = .scaleAspectFill
view1.addSubview(animationView)
animationView.play() // 애니메이션 시작
animationView.loopMode = .loop // 무한 재생
// animationView.pause() // 종료
}
}
* 참고: lottiefiles.com/recent
'iOS 응용 (swift)' 카테고리의 다른 글
[iOS - swift] AVFoundation, Camera 다루는 방법 (3) | 2021.01.26 |
---|---|
[iOS - swift] URL, URI 파싱, path, query string (URLComponents, URITemplate 프레임워크) (2) | 2021.01.25 |
[iOS - swift] Hero 프레임워크 (화면전환 애니메이션) (0) | 2021.01.24 |
[iOS - swift] Transition, Animator objects, Interactive animator objects (0) | 2021.01.24 |
[iOS - swift] RxGesture (+ tapGesture 바인딩 시 emit 현상 해결 방법) (0) | 2021.01.24 |
Comments