iPhone ShouldStartLoad fires once per click?
- by BahaiResearch.com
In my UIWebView when an anchor is clicked I catch it in ShouldStartLoad and always return false to cancel it. (I treat the clicks as command to do things)
Strangely the ShouldStartLoad only fires once if the same anchor is clicked more than once in a row.
Eg:
Click "A", Click "A" - ShouldStartLoad receives "A" once
Click "A", Click "B", Click "A" - ShouldStartLoad receives "A", then "B" then "A"
Is there a way to make ShouldStartLoad receive "A" twice when clicked twice in a row?