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
- HIG
- 애니메이션
- swiftUI
- tableView
- Xcode
- 스위프트
- UICollectionView
- uiscrollview
- collectionview
- clean architecture
- UITextView
- ios
- 리팩토링
- Human interface guide
- Observable
- 리펙토링
- 클린 코드
- rxswift
- combine
- Protocol
- SWIFT
- map
- uitableview
- 리펙터링
- Clean Code
- Refactoring
- swift documentation
- RxCocoa
- MVVM
- ribs
Archives
- Today
- Total
목록Animation 테크닉 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] Animation 테크닉 - 오토레이아웃, 단일 애니메이션, 연속 애니메이션, 스프링, 뒤집기 (autolayout, CAKeyframeAnimation, animateKeyFrames)
* 예제에서 UI 레이아웃을 코드로 편리하게 작성하기 위해 SnapKit 프레임워크 사용 (SnapKit 필수로 알아야 하는 것 포스팅 글 참고) 애니메이션에 사용될 뷰 준비 animationTargetView 선언 // ViewController.swift import UIKit import SnapKit private lazy var animationTargetView: UIView = { let view = UIView() view.backgroundColor = .systemBlue self.view.addSubview(view) return view }() self.animationTargetView.snp.makeConstraints { $0.top.equalTo(self.view.safeAr..
iOS 응용 (swift)
2022. 3. 14. 23:13