WKWebView tapping on a ad doesn't fire delegate method











up vote
0
down vote

favorite












I am using a WKWebView and I have the delegate methods for navigation (request/response) and everything works as it should. For some reason, there are some ads that the function doesn't fire at all. Any idea why? I can't even check the URL to see what is happening.



I get only WKContentView[@] set up: @ pid: @ MACH_PORT
and on the simulator if get a pop-up menu with title :
JavaScript and options : open / cancel



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


can I use something in configure?



Thanks










share|improve this question
























  • You can add observer webView.addObserver(self, forKeyPath: "URL", options: [.new, .old], context: nil) and then override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {print(change?[.newKey],change?[.oldKey])}
    – canister_exister
    Nov 19 at 14:41










  • it doesn't get triggered the observer for some reason and I tried different solutions to make it triggered
    – P S
    Nov 20 at 8:00










  • @canister_exister I managed to get the url with a similar solution so thanks for the help man. Now I just have to figure out why it is not firing the delegate method.
    – P S
    Nov 20 at 8:11










  • decidePolicyFor not always working for redirects
    – canister_exister
    Nov 20 at 14:49















up vote
0
down vote

favorite












I am using a WKWebView and I have the delegate methods for navigation (request/response) and everything works as it should. For some reason, there are some ads that the function doesn't fire at all. Any idea why? I can't even check the URL to see what is happening.



I get only WKContentView[@] set up: @ pid: @ MACH_PORT
and on the simulator if get a pop-up menu with title :
JavaScript and options : open / cancel



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


can I use something in configure?



Thanks










share|improve this question
























  • You can add observer webView.addObserver(self, forKeyPath: "URL", options: [.new, .old], context: nil) and then override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {print(change?[.newKey],change?[.oldKey])}
    – canister_exister
    Nov 19 at 14:41










  • it doesn't get triggered the observer for some reason and I tried different solutions to make it triggered
    – P S
    Nov 20 at 8:00










  • @canister_exister I managed to get the url with a similar solution so thanks for the help man. Now I just have to figure out why it is not firing the delegate method.
    – P S
    Nov 20 at 8:11










  • decidePolicyFor not always working for redirects
    – canister_exister
    Nov 20 at 14:49













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am using a WKWebView and I have the delegate methods for navigation (request/response) and everything works as it should. For some reason, there are some ads that the function doesn't fire at all. Any idea why? I can't even check the URL to see what is happening.



I get only WKContentView[@] set up: @ pid: @ MACH_PORT
and on the simulator if get a pop-up menu with title :
JavaScript and options : open / cancel



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


can I use something in configure?



Thanks










share|improve this question















I am using a WKWebView and I have the delegate methods for navigation (request/response) and everything works as it should. For some reason, there are some ads that the function doesn't fire at all. Any idea why? I can't even check the URL to see what is happening.



I get only WKContentView[@] set up: @ pid: @ MACH_PORT
and on the simulator if get a pop-up menu with title :
JavaScript and options : open / cancel



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


can I use something in configure?



Thanks







ios swift wkwebview






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 19 at 14:40

























asked Nov 19 at 14:19









P S

959




959












  • You can add observer webView.addObserver(self, forKeyPath: "URL", options: [.new, .old], context: nil) and then override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {print(change?[.newKey],change?[.oldKey])}
    – canister_exister
    Nov 19 at 14:41










  • it doesn't get triggered the observer for some reason and I tried different solutions to make it triggered
    – P S
    Nov 20 at 8:00










  • @canister_exister I managed to get the url with a similar solution so thanks for the help man. Now I just have to figure out why it is not firing the delegate method.
    – P S
    Nov 20 at 8:11










  • decidePolicyFor not always working for redirects
    – canister_exister
    Nov 20 at 14:49


















  • You can add observer webView.addObserver(self, forKeyPath: "URL", options: [.new, .old], context: nil) and then override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {print(change?[.newKey],change?[.oldKey])}
    – canister_exister
    Nov 19 at 14:41










  • it doesn't get triggered the observer for some reason and I tried different solutions to make it triggered
    – P S
    Nov 20 at 8:00










  • @canister_exister I managed to get the url with a similar solution so thanks for the help man. Now I just have to figure out why it is not firing the delegate method.
    – P S
    Nov 20 at 8:11










  • decidePolicyFor not always working for redirects
    – canister_exister
    Nov 20 at 14:49
















You can add observer webView.addObserver(self, forKeyPath: "URL", options: [.new, .old], context: nil) and then override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {print(change?[.newKey],change?[.oldKey])}
– canister_exister
Nov 19 at 14:41




You can add observer webView.addObserver(self, forKeyPath: "URL", options: [.new, .old], context: nil) and then override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {print(change?[.newKey],change?[.oldKey])}
– canister_exister
Nov 19 at 14:41












it doesn't get triggered the observer for some reason and I tried different solutions to make it triggered
– P S
Nov 20 at 8:00




it doesn't get triggered the observer for some reason and I tried different solutions to make it triggered
– P S
Nov 20 at 8:00












@canister_exister I managed to get the url with a similar solution so thanks for the help man. Now I just have to figure out why it is not firing the delegate method.
– P S
Nov 20 at 8:11




@canister_exister I managed to get the url with a similar solution so thanks for the help man. Now I just have to figure out why it is not firing the delegate method.
– P S
Nov 20 at 8:11












decidePolicyFor not always working for redirects
– canister_exister
Nov 20 at 14:49




decidePolicyFor not always working for redirects
– canister_exister
Nov 20 at 14:49

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53376588%2fwkwebview-tapping-on-a-ad-doesnt-fire-delegate-method%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53376588%2fwkwebview-tapping-on-a-ad-doesnt-fire-delegate-method%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

If I really need a card on my start hand, how many mulligans make sense? [duplicate]

Alcedinidae

Can an atomic nucleus contain both particles and antiparticles? [duplicate]