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
- 클린아키텍쳐
- rib
- Ribs
- RxCocoa
- Git Large File Storage
- ios
- App Signing
- 메모리 접근 충돌
- iOS Target
- memory safety
- 대머리깃허브
- Dispatch.main.sync
- windowScene
- Github file size
- conflicting access to memory
- 로버트마틴형
- UICoordinateSpace
- Apple Certificate
- Automatically manage signing
- RxSwift
- RIBs Tutorial
- Dependency Rule
- swiftdocs
- 잡초가득블로그
- Concurrent
- coordinateSpace
- iOS 버전 점유율
- SWIFT
- in-out
- Large File Storage
Archives
- Today
- Total
목록customview (1)
빙수왕의 개발일지
iOS) UIButton Custom해서 CheckBox 만들기
iOS에는 안드로이드와 달리 체크박스가 없어서 UIButton을 이용해서 만들어야 한다. 기본 UIButton의 selected 상태를 사용하여 이미지를 변경해 줄 수도 있지만, 확장성을 생각해서 Custom Class를 만들어 보았다. /// 체크박스 class CheckBox: UIButton { /// 체크박스 이미지 var checkBoxResouces = OnOffResources( onImage: UIImage(named: DefaultResource.checkedImage), offImage: UIImage(named: DefaultResource.notCheckedImage) ) { didSet { self.setChecked(isChecked) } } enum DefaultResource..
개발/iOS
2021. 9. 23. 15:16