반응형
iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다.
let oneColor = UIColor(red: 255/255, green: 216/255, blue: 0, alpha: 1)
let twoColor = UIColor(red: 88/255, green: 112/255, blue: 88/255, alpha: 1)
segmentedControl.backgroundColor = oneColor
segmentedControl.selectedSegmentTintColor = twoColor
segmentedControl.setTitleTextAttributes([.foregroundColor: twoColor as Any], for: .normal)
segmentedControl.setTitleTextAttributes([.foregroundColor: oneColor as Any], for: .selected)
반응형
'iOS > 코드조각' 카테고리의 다른 글
[iOS, Swift] Constraint를 통한 동적 높이 조절 (0) | 2022.10.08 |
---|---|
[iOS, Swift] UIView 터치범위 넓히기 (0) | 2022.10.08 |
[iOS, Swift] UserDefaults 사용 예제 (0) | 2022.09.27 |
[iOS, Swift] View 애니메이션 추가(위아래 반복) (1) | 2022.09.20 |
[iOS, Swift] Slider 양 옆 공간이 남을 때 (0) | 2022.09.19 |