티스토리 뷰
UIButton에 background를 상태에 따라 설정하기 위해서는 따로 extension이 필요합니다.
(왜인지 모르겠는데 기본으로 제공되지 않습니다)
extension UIButton {
func setBackgroundColor(_ color: UIColor, for state: UIControl.State) {
UIGraphicsBeginImageContext(CGSize(width: 1.0, height: 1.0))
guard let context = UIGraphicsGetCurrentContext() else { return }
context.setFillColor(color.cgColor)
context.fill(CGRect(x: 0.0, y: 0.0, width: 1.0, height: 1.0))
let backgroundImage = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
setBackgroundImage(backgroundImage, for: state)
}
}
다음과 같이 설정한 후, 이렇게 사용하면 됩니다. (기본 상태)
button.setBackgroundColor(.black, for: .normal)
선택되거나, 비활성화 됬을때의 색을 설정하고 싶다면 다음과 같이 사용합니다.
button.setBackgroundColor(.black, for: .selected)
button.setBackgroundColor(.black, for: .disabled)
'iOS Programming' 카테고리의 다른 글
[iOS] PNG Image로 애니메이션 만들기 (0) | 2021.08.21 |
---|---|
[iOS] 키보드 return키 이벤트 설정하기 (0) | 2021.08.21 |
[iOS] Alert 보여주기 (0) | 2021.08.20 |
[iOS] HEX 코드로 색깔 지정하기 (0) | 2021.08.19 |
[iOS] addSubview() 깔끔하게 하기 (0) | 2021.08.19 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 멀티프로세스
- OS
- WKUIDelegate
- 스레드
- Xcode
- optional
- PHAsset
- webcrawl
- swiftsoup
- Swift
- cs
- 디프만
- 프로세스
- URLComponents
- 개발대외활동
- returnKey
- 슈퍼스칼라
- sharedmemory
- RxSwift
- 스냅킷
- 쓰레드
- rxcocoa
- 부캠
- ios
- setBackgroundColor
- isNetworkAccessAllowed
- 운영체제
- PHImageRequestOptions
- 프로세스간통신
- 개발동아리
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함