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
- clean architecture
- swift documentation
- rxswift
- tableView
- 리펙토링
- UITextView
- 스위프트
- Human interface guide
- Xcode
- Refactoring
- ribs
- SWIFT
- Observable
- Protocol
- 리팩토링
- 애니메이션
- uiscrollview
- UICollectionView
- 클린 코드
- ios
- RxCocoa
- MVVM
- collectionview
- Clean Code
- combine
- uitableview
- map
- swiftUI
- HIG
- 리펙터링
Archives
- Today
- Total
목록rounded shadow button (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] UI 컴포넌트 - Rounded shadow Button (라운드 그림자 버튼)
BaseButton 정의 configure()에는 커스텀 버튼에 기본적으로 실행될 레이아웃 구성 bind()에는 커스텀 버튼에 특정 데이터에 대한 UI 구성 class BaseButton: UIButton { override init(frame: CGRect) { super.init(frame: frame) configure() } @available(*, unavailable) required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } func configure() {} func bind() {} } RoundedShadowButton 구현 configure() 구현 button이 가지고 있는 프로퍼티인 i..
UI 컴포넌트 (swift)
2021. 7. 14. 00:06