Is there a way of changing the scroll position of a UIWebView based on the current URL?
For example:
if (webView = thisURL) {
webView scrollPosition = ...
}
elseif (webView = thisURL) {
webView scrollPosition = ...
}
Thanks
|
Is there a way of changing the scroll position of a UIWebView based on the current URL? For example:
Thanks |
|||||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Implement the UIWebViewDelegate, then make something like this:
|
|||
|
|