iOS Target을 11.0으로 올린 뒤 UIWebView에서 WKWebView 변환 작업을 했다. 자동로그인일 경우, setCookie를 해주어야하는데... 생각했던 방법으로 정상적으로 작동을 안했다. 일단, WKWebView를 여러개를 사용하기때문에 WKWebViewConfiguration는 AppDelegate에서 초기화를 해주고 동일한 configuration을 사용하였다. AppDelegate.m (didFinishLaunchingWithOptions 메소드) self.wkWebViewConfiguration = [[WKWebViewConfiguration alloc] init]; WKUserContentController *wkUserContentController = [[WKUserCont..