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
- 리팩토링
- ribs
- collectionview
- swiftUI
- 애니메이션
- MVVM
- Human interface guide
- uitableview
- Xcode
- rxswift
- SWIFT
- UICollectionView
- combine
- 리펙토링
- Observable
- map
- RxCocoa
- HIG
- Refactoring
- ios
- UITextView
- 클린 코드
- clean architecture
- swift documentation
- uiscrollview
- 스위프트
- 리펙터링
- Clean Code
- Protocol
- tableView
Archives
- Today
- Total
목록RatingView (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] UI 컴포넌트 - Rating View (별점, 평점, tag 사용)
아이디어 stackView가 있고, stackView 안에 Button들이 존재 해당 Button들은 for문으로 정해준 개수만큼 생성되며, 배열로 참조되고 있는 형태 버튼들의 tag를 설정하여, 어떤 버튼이 눌렀는지 tag로 체크 후 tag이하를 갖는 인덱스들을 선택된 처리 BaseView 정의 class BaseView: UIView { override init(frame: CGRect) { super.init(frame: frame) configure() } @available(*, unavailable) required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } func configure() {} fu..
UI 컴포넌트 (swift)
2021. 7. 23. 01:05