# 오류
Thread 1: Exception: "Could not instantiate class named WKWebView because no class named WKWebView was found; the class needs to be defined in source code or linked in from a library (ensure the class is part of the correct target)"
# 원인
ViewController에서 WKWebView로 웹뷰띄우는 소스를 구현했을 때 WebKit framework 라이브러리를 프로젝트에 추가해주어야 한다.
@IBOutlet var webView: WKWebView!
# 해결
'생계유지형 개발자 > Mobile' 카테고리의 다른 글
[ios] iOS 13 이상 Multiple Windows 지원 업데이트 (iPad) (0) | 2020.10.21 |
---|---|
[ios] 배포환경 별 빌드설정 달리 하기 (0) | 2020.08.11 |
[ios] Main.storyboard: warning: Unsupported Configuration: Medium Style before iOS 13.0 (0) | 2020.08.05 |
[ios] iOS 13 미만인 경우, SceneDelegate로 인해 실행 안될 때 (0) | 2020.07.29 |
[ios] UIWebView -> WkWebView 전환 (0) | 2020.07.27 |