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
- swift documentation
- rxswift
- Refactoring
- 리펙터링
- Observable
- Protocol
- uiscrollview
- uitableview
- ribs
- Human interface guide
- combine
- Xcode
- 애니메이션
- Clean Code
- swiftUI
- tableView
- 리팩토링
- UICollectionView
- MVVM
- 클린 코드
- SWIFT
- ios
- collectionview
- 리펙토링
- HIG
- UITextView
- RxCocoa
- clean architecture
- 스위프트
- map
Archives
- Today
- Total
목록addKeyframe (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