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 |
Tags
- swiftUI
- Human interface guide
- Refactoring
- collectionview
- ribs
- 스위프트
- 클린 코드
- rxswift
- map
- RxCocoa
- Observable
- uiscrollview
- 애니메이션
- 리펙터링
- uitableview
- 리펙토링
- swift documentation
- MVVM
- Clean Code
- Protocol
- SWIFT
- 리팩토링
- HIG
- combine
- UITextView
- tableView
- UICollectionView
- ios
- clean architecture
- Xcode
Archives
- Today
- Total
김종권의 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 button에서 xib를 사용하지 않고 code만 사용하여 구현되도록 정의
class CustomButton: UIButton {
override init(frame: CGRect) {
super.init(frame: frame)
}
@available(*, unavailable)
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
- @available(*, unavailable)에 접근할때 컴파일 에러 발생
- 'init(coder:)' is unavailable
'iOS 응용 (swift)' 카테고리의 다른 글
[iOS - swift] 1. CollectionView (컬렉션 뷰) - UICollectionViewFlowLayout (0) | 2021.07.16 |
---|---|
[iOS - swift] PageViewController (페이지 뷰 컨트롤러) (7) | 2021.07.15 |
[iOS - swift] SnapKit (스냅킷, 오토레이아웃) 필수로 알아야 하는 것 (0) | 2021.07.11 |
[iOS - swift] 코드로 xib파일을 얻는 Protocol 정의 (StoryboardInstantiable) (0) | 2021.07.11 |
[iOS - swift] DispatchQueue.main.sync 사용 시 주의사항 (Deadlock) (2) | 2021.07.05 |
Comments