[iOS] WKUIDelegate
2024. 3. 16. 15:06
WKUIDelegate(Protocol) : 웹페이지를 대신하여 기본 UI 요소를 표시하는 방법
- 새 창이 열리는 것을 제어
- 사용자가 요소를 클릭했을 때 표시되는 기본 메뉴 Item의 동작을 강화
- 기타 UI 관련 작업 수행
- JavaScript 또는 기타 플러그인 콘텐츠를 처리하는 결과로 호출
webView(_:createWebViewWith:for:windowFeatures:)
새로운 웹뷰를 생성
webViewDidClose(_:)
웹 뷰창(DOM)이 성공적으로 닫혔을 때
webView(_:runJavaScriptAlertPanelWithMessage:initiatedBtFrame:completionHandler:)
JavaScript Alert을 표시할 때
출처
728x90
'iOS > Swift' 카테고리의 다른 글
[iOS] HTTP Cookie (0) | 2024.03.24 |
---|---|
[iOS] WKScriptMessageHandler (0) | 2024.03.16 |
[iOS] WKNavigationDelegate (0) | 2024.03.16 |
[Swift] Calendar (0) | 2024.03.09 |
[iOS] WKWebView (0) | 2024.03.03 |