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
- tableView
- Protocol
- SWIFT
- map
- MVVM
- Refactoring
- 스위프트
- 리팩토링
- swift documentation
- ios
- 애니메이션
- swiftUI
- combine
- collectionview
- rxswift
- uiscrollview
- UICollectionView
- HIG
- clean architecture
- Xcode
- 리펙터링
- ribs
- Human interface guide
- Observable
- 클린 코드
- RxCocoa
- uitableview
- Clean Code
- 리펙토링
- UITextView
Archives
- Today
- Total
목록Wave Animation (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] Wave Animation (웨이브 애니메이션)
구현 아이디어 UIView 2개를 준비 안쪽 뷰 하나 바깥 쪽 waveView 하나 바깥 쪽 waveView의 CGSize를 크게했다가, 줄였다가를 재귀적으로 계속 요청하여 반복되도록 설정 구현 원 형태로 그려지게 할것이므로, RoundView 준비 import UIKit class RoundView: UIView { override func layoutSubviews() { super.layoutSubviews() self.clipsToBounds = true self.layer.cornerRadius = self.bounds.height / 2.0 } } Wave Animation을 적용할 ViewController 준비 import UIKit class ViewController: UIViewCon..
UI 컴포넌트 (swift)
2022. 6. 30. 23:17