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
- 리펙터링
- Human interface guide
- 스위프트
- collectionview
- 리펙토링
- UICollectionView
- swift documentation
- tableView
- Observable
- rxswift
- 리팩토링
- map
- MVVM
- uiscrollview
- Protocol
- 애니메이션
- UITextView
- RxCocoa
- Refactoring
- SWIFT
- combine
- swiftUI
- Xcode
- ios
- ribs
- clean architecture
- Clean Code
- HIG
- uitableview
- 클린 코드
Archives
- Today
- Total
목록@available (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] @available(*, unavailable) 사용하여 비가용성 정의
비가용성 정의 xib를 사용하지 않고 code로만 진행하는 경우, 보통 required init?(coder:)는 fatalError 발생하도록 설정 runtime error를 발생시키는 코드 required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } @available(*, unavailable)을 설정 Compile time에 error를 발생시키는 코드이므로 더욱 좋은 코드 @available(*, unavailable) required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } ex) custom butto..
iOS 응용 (swift)
2021. 7. 13. 22:59