일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- gesture
- UIKit
- authentication
- withAnimation
- state
- firebase
- Animation
- swift
- CS
- iphone
- fullscreencover
- SwiftUI
- combine
- 데이터최적화
- Network
- stateobject
- realitykit
- ar
- Performance
- Concurrency
- ios
- RxSwift
- GCD
- auth
- arkit
- WWDC
- 달력
- 네트워크
- environmentobjet
- dataflow
Archives
- Today
- Total
목록Button (1)
XLOG
[SwiftUI] Button 의 highlighted 감지하기
기존 UIKit의 UIButton 의 경우 setTitleColor 를 통해 highlighted에 따라 색상을 변경할 수 있었다. 하지만 SwiftUI 에선 자동으로 Button에서 처리가 되기도 하지만 Custom Label의 경우는 그것이 쉽지 않다. 방법은 간단하다. ButtonStyle 을 구현하는 것이다. ButtonStyle 은 Protocol 로 Makebody 함수를 통해서 View 를 return 한다. 또한 makebody에 configuration 에는 label, isPressed 가 있다. 여기서 isPressed 가 바로 highlighted 와 비슷하다고 보면 된다. 구현은 간단하다. struct CustomButtonStyle: ButtonStyle { func makeBo..
Swift/SwiftUI
2023. 12. 1. 23:19