본문 바로가기

Dev/ios

ios-Swift WebView 오류

728x90
반응형

프로젝트를 하게 됐는데.. 어떡하다 보니.. App개발을 해야 하게 됐다 ㅡ.ㅡ 그래서 공부중 오류가 발생 ㅜ.ㅜ

아.. 진짜.. ios 까지 하게 될줄이야...

 

암튼 머.. Swift를 사용해서 개발 공부중에 있다.

그중에 WebView를 사용하는데 문제가 발생한 부분을 정리해본다.

Exception	NSException *	"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)"	0x0000600003deb330

run 실행후 Exception


코드가 잘려서 하단같은 에러가 발생한다 ㅜ.ㅜ 머지. 잘못된게 없는데 ...

Exception NSException * "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)" 0x0000600003deb330

구글검색을 통해 알게 된것은 import 하는 라이브러리 문제란다 ㅜ.ㅜ

import WebKit

WebKit을 임포트 하면서 제대로 인식이 안되서 나는 문제란다.

 

그래서 해결 방법은 직접 라이브러리를 선택해주는것이다.

1. 해당 영역으로 가자.
  프로젝트 -> Build Phases -> target -> link Binary 클릭

라이브러리 화면
라이브러리 활성화 화면
라이브러리 추가 된 화면

이렇게 화면 문제 없이 시뮬레이터에서 실행이 된다 ㅡ.ㅡㅋ

 

728x90
반응형