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 |
Tags
- SWIFT
- Xcode
- 리펙터링
- 애니메이션
- swiftUI
- swift documentation
- collectionview
- combine
- Observable
- UITextView
- tableView
- 클린 코드
- 리펙토링
- ribs
- Human interface guide
- uitableview
- 스위프트
- HIG
- 리팩토링
- uiscrollview
- Clean Code
- RxCocoa
- MVVM
- Refactoring
- rxswift
- ios
- map
- clean architecture
- UICollectionView
- Protocol
Archives
- Today
- Total
목록버튼 탭 애니메이션 (1)
김종권의 iOS 앱 개발 알아가기
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/caniH2/btrtG8pUeqZ/zEY6dokNBFrbT93VQ7wGj1/img.gif)
isHighlighted 버튼을 눌렀을 때, isHighlighted = true로 변경되었다가, isHighlighted = false로 다시 변경 * isHighlighted 상태 확인 방법 - UIButton의 isHighlighted 프로퍼티를 override하여 didSet으로 확인 public protocol AnimationButtonDelegate: AnyObject { func didChangeHighlighted(highlighted: Bool) } class AnimationButton: UIButton { weak var delegate: AnimationButtonDelegate? override var isHighlighted: Bool { didSet { self.delegat..
iOS 응용 (swift)
2022. 2. 20. 13:22