<instance method>webView(_:decidePolicyFor:decisionHandler:)

dlsl7380·2022년 2월 8일
0

Instance method

목록 보기
18/19

webView(_:decidePolicyFor:decisionHandler:)

Asks the delegate for permission to navigate to new content based on the specified action information.
지정된 작업 정보를 기반으로 새 콘텐츠를 탐색할 수 있는 권한을 대리인에게 요청합니다.

Declaration

optional func webView(_ webView: WKWebView, 
      decidePolicyFor navigationAction: WKNavigationAction, 
      decisionHandler: @escaping (WKNavigationActionPolicy) -> Void)

Parameters

webView
The web view from which the navigation request began.
탐색 요청이 시작된 웹 보기입니다.
navigationAction
Details about the action that triggered the navigation request.
탐색 요청을 트리거한 작업에 대한 세부정보입니다.
decisionHandler
A completion handler block to call with the results about whether to allow or cancel the navigation. This handler has no return value and takes the following parameter:
탐색을 허용할지 취소할지 여부에 대한 결과와 함께 호출할 완료 처리기 블록입니다. 이 핸들러에는 반환 값이 없으며 다음 매개변수를 사용합니다.
policy
A constant that indicates whether to cancel or allow the navigation. For a list of possible values, see WKNavigationActionPolicy.
탐색을 취소할지 허용할지 여부를 나타내는 상수입니다. 가능한 값 목록은 WKNavigationActionPolicy를 참조하세요.

Discussion

Use this method to allow or deny a navigation request that originated with the specified action.
이 메서드를 사용하여 지정된 작업에서 시작된 탐색 요청을 허용하거나 거부합니다.

The web view calls this method after the interaction occurs but before it attempts to load any content.
웹 보기는 상호 작용이 발생한 후 콘텐츠 로드를 시도하기 전에 이 메서드를 호출합니다.

If you implement this method, always execute the decisionHandler block at some point.
이 메서드를 구현하는 경우 항상 특정 시점에서 decisionHandler 블록을 실행합니다.

You may execute it synchronously from your delegate method’s implementation, or execute it asynchronously after your method returns.
대리자 메서드의 구현에서 동기식으로 실행하거나 메서드가 반환된 후 비동기식으로 실행할 수 있습니다.

If your delegate object implements the webView(:decidePolicyFor:preferences:decisionHandler:) method, the web view doesn’t call this method.
대리자 객체가 webView(
:decidePolicyFor:preferences:decisionHandler:) 메서드를 구현하는 경우 웹 뷰는 이 메서드를 호출하지 않습니다.

0개의 댓글

관련 채용 정보