티스토리 뷰
728x90
반응형
iOS 15 에서 사용하는 UIButton.ConfigurationUpdateHandler 를 가지고 버튼의 상태에 따라서 대응해보도록 했다.
enum ButtonState {
case enable
case disable
}
var completeButtonIsEnabled: ButtonState = .disable {
didSet {
if completeButtonIsEnabled == .disable {
completeButton.isEnabled = false
if #available(iOS 15.0, *) {
completeButton.setNeedsUpdateConfiguration()
}
} else {
completeButton.isEnabled = true
if #available(iOS 15.0, *) {
completeButton.setNeedsUpdateConfiguration()
}
}
}
}
// MARK: - #available(iOS 15.0, *)
if #available(iOS 15.0, *) {
let config = UIButton.Configuration.filled()
completeButton.configuration = config
let configHandler: UIButton.ConfigurationUpdateHandler = { button in
switch button.state {
case .disabled:
button.configuration?.title = "완료"
// button.configuration?.baseBackgroundColor = .inputBlack2
// button.configuration?.baseForegroundColor = .hintGray1
default:
button.configuration?.title = "완료"
// button.configuration?.baseBackgroundColor = .mainBlue
// button.configuration?.baseForegroundColor = .white1
}
}
completeButton.configurationUpdateHandler = configHandler
} else {
completeButton.setTitle("완료", for: .normal)
// completeButton.setTitleColor(.white1, for: .normal)
// completeButton.setBackgroundImage(, for: .normal)
// completeButton.setTitleColor(.hintGray1, for: .disabled)
// completeButton.setBackgroundImage(, for: .disabled)
}
728x90
반응형
'iOS' 카테고리의 다른 글
iOS) NVActivityIndicatorView 라이브러리 사용해보기 (0) | 2022.01.01 |
---|---|
iOS) 무한스크롤 구현하기 (2) | 2022.01.01 |
iOS) UITextField 글자 수 제한 구현하기 (2) | 2021.12.08 |
iOS) UIPickerView 에 고정 라벨 추가하기 (0) | 2021.12.01 |
iOS) 탭바 테두리, 그림자 설정 및 iOS 15.0 대응 (0) | 2021.11.28 |
댓글
TAG
- YPImagePicker
- watchOS
- containerBackground
- 서버통신
- configurable widget
- Algorithm
- github
- CloneCoding
- WidgetKit
- MOYA
- Protocol
- SwiftUI
- Swift
- 2022 KAKAO TECH INTERNSHIP
- RxCocoa
- rxswift
- Firebase
- projectsetting
- Widget
- Notification
- MVVM
- OpenSourceLibrary
- UserDefaults
- async/await
- WWDC
- Objective-C
- APNS
- WWDC22
- IOS
- urlsession
최근에 올라온 글
최근에 달린 댓글
글 보관함
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
링크
- Total
- Today
- Yesterday