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
- uitableview
- uiscrollview
- HIG
- Observable
- swift documentation
- Refactoring
- 클린 코드
- Xcode
- swiftUI
- Protocol
- SWIFT
- 리팩토링
- ios
- collectionview
- ribs
- UICollectionView
- Human interface guide
- 리펙토링
- rxswift
- 스위프트
- MVVM
- RxCocoa
- tableView
- Clean Code
- UITextView
- map
- combine
- 애니메이션
- 리펙터링
- clean architecture
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] storyboard 에러- 1. NSUnknownKeyException, this class is not key value coding-compliant for the key // 2. Unexpectedly found nil while implicitly unwrapping an Optional value 본문
iOS 응용 (swift)
[iOS - swift] storyboard 에러- 1. NSUnknownKeyException, this class is not key value coding-compliant for the key // 2. Unexpectedly found nil while implicitly unwrapping an Optional value
jake-kim 2021. 5. 25. 00:41stroyboard 버그
- *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UIViewController 0x105c22490> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key webView.'
원인
- .swift파일에서 storyboard와 연결되어 있던 @IBoutlet파일이 삭제되어 storyboard에만 존재하는 경우
- Inspector창에서 Inherit Moudle From Target이 체크되지 않은 경우
- UIView를 커스텀한것이 아닌, UITableViewCell과 같은것에서 시도한 경우
- UITableViewCell는 Cocoa Touch Class를 사용하여 생성해야 에러가 나지 않고, 아래처럼 생성하면 에러 발생
주의) Cell을 사용한다면, register() 시에 nib 파일을 넣어야함
Cell을 사용하는 곳에서 에러
- 에러: Thread 1: Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value
- 위와같이 뜰 경우, storyboad에 있는 Cell의 inspector에 클래스 이름을 넣었지만, 코드에도 register하여 중복으로 등록한 경우 -> register 코드 삭제 시 해결
- 이유: storyboard안의 tableVIew나 CollectionView에 내장되어 있는 Cell에 class명을 등록해놓으면, 이미 cell이 해당 뷰에 내장되어 있다는 의미이므로 register를 호출하면 중복 등록으로 에러 발생
'iOS 응용 (swift)' 카테고리의 다른 글
[iOS - swift] UIKit에서 SwiftUI의 Preview 사용 방법 (2) | 2021.05.26 |
---|---|
[iOS - swift] HTML 특수문자 코드를 일반적인 문자열로 변경하는 방법 (0) | 2021.05.26 |
[iOS - swift] 키보드에 return을 done 버튼으로 변경 방법 (+ didEndOnExit 이벤트) (0) | 2021.05.20 |
[iOS - swift] storyboard 에서 webView사용 방법 (WebKit View, WKWebView) (0) | 2021.05.17 |
[iOS - swift] 앱 추적 투명성 ATT(App Tracking Transparency) 권한 설정 (IDFA, iOS 14.5+) (0) | 2021.05.09 |
Comments