SwiftUI(iOS)를 사용하여 WKWebView에서 기본 인증으로 웹 애플리케이션을 표시하는 방법
소스 코드
이 소스 코드는 "WKWebView with Basic auth" 및 "Using WebKit Delegates"을 참조하여 작성되었습니다.
ContentView.swift
import SwiftUI
struct ContentView: View {
var body: some View {
WebViewTest()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
WebViewTest.swift
import SwiftUI
import WebKit
struct WebViewTest: UIViewRepresentable {
func updateUIView(_ uiView: WKWebView, context: Context) {
//
}
func makeCoordinator() -> Coordinator {
Coordinator(self)
}
var url: String = "https://hogehoge.hoge"
func makeUIView(context: Context) -> WKWebView {
let view = WKWebView()
view.navigationDelegate = context.coordinator
view.load(URLRequest(url:URL(string: url)!))
return view
}
class Coordinator: NSObject, WKNavigationDelegate {
let parent: WebViewTest
init(_ parent: WebViewTest) {
self.parent = parent
}
func webView(_ webView: WKWebView, didReceive challenge: URLAuthenticationChallenge,
completionHandler: @escaping(URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
let credential = URLCredential(user: "The user name to Basic Auth.",
password: "The password to Basic Auth.",
persistence: .forSession)
completionHandler(.useCredential, credential)
}
}
}
struct WebViewTest_Previews: PreviewProvider {
static var previews: some View {
WebViewTest()
}
}
결과
웹 애플리케이션의 내용을 보여줄 수 없습니다. 하지만 모든 콘텐츠(텍스트 및 이미지)가 로드되는 것을 확인할 수 있을 것 같습니다.
이 원본 기사는 내가 쓴 다음과 같습니다. 이것은 이 원본 기사의 일부를 일본어에서 영어로 번역한 것입니다.
SwiftUI의 WKWebView에서 기본으로 웹을 실행하려면(iOS)
zenn.dev
Reference
이 문제에 관하여(SwiftUI(iOS)를 사용하여 WKWebView에서 기본 인증으로 웹 애플리케이션을 표시하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/akirakashihara/how-to-display-a-web-application-with-basic-authentication-in-wkwebview-using-swiftui-ios-2a54텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)