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 | 31 |
Tags
- combine
- Observable
- swiftUI
- RxCocoa
- uitableview
- Refactoring
- 리펙터링
- UICollectionView
- 리팩토링
- map
- rxswift
- MVVM
- HIG
- tableView
- Xcode
- UITextView
- uiscrollview
- collectionview
- 클린 코드
- Human interface guide
- Clean Code
- swift documentation
- 스위프트
- 리펙토링
- ios
- Protocol
- 애니메이션
- clean architecture
- SWIFT
- ribs
Archives
- Today
- Total
목록animateKeyframes (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] animateKeyframes, addKeyframe 연속된 애니메이션 구현
연속된 애니메이션 구현 방법 UIView.animate를 사용하면 nested 되는 성격이 존재하여 가독성에 좋지 않은 코드로 표출 4개의 연속된 애니메이션을 UIView.animate로 구현 시 아래처럼 nested 되어 가독성에 안좋은 코드로 표출 UIView.animate( withDuration: 3, delay: 0, options: .curveEaseIn, animations: { // first animation }, completion: { _ in UIView.animate( withDuration: 3, delay: 0, options: .curveEaseIn, animations: { // second animation }, completion: { _ in UIView.animate..
iOS 응용 (swift)
2021. 12. 24. 23:53