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
- ios
- rxswift
- UITextView
- swift documentation
- Refactoring
- Clean Code
- uiscrollview
- collectionview
- combine
- swiftUI
- uitableview
- HIG
- UICollectionView
- clean architecture
- 클린 코드
- tableView
- 리펙토링
- 리팩토링
- 리펙터링
- RxCocoa
- MVVM
- Protocol
- Xcode
- Human interface guide
- ribs
- 스위프트
- Observable
- map
- SWIFT
- 애니메이션
Archives
- Today
- Total
목록버튼 애니메이션 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] UIButton 버튼 탭 애니메이션 구현 방법 (isHighlighted)
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