带您定位链接的 UIView
我正在开发一个 iPhone 应用程序,其中我将 HTML 内容作为 HTMLString 加载到 UIWebview 中,并且希望有一个 UIView 告诉 UIWebview 滚动到锚链接。我可以从已加载的 HTML 内容滚动到锚链接,还是必须使用 URL 中的锚链接重新加载页面?
谢谢,
fbr
I'm developing an iPhone app where I have my HTML content loaded in a UIWebview as a HTMLString and would like to have a UIView that tells the UIWebview to scroll to an anchor link. Can I scroll to the anchor link from the already loaded HTML content or I would have to reload the page with the anchor link in the URL?
thanks,
fbr
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个完整的猜测,但也许你可以用 Javascript 使 UIWebView 滚动?
您可以使用此方法在 UIWebView 中执行 Javascript
请参阅以编程方式滚动到锚标记 关于如何使用 Javascript。
This is a complete guess, but perhaps you could make the UIWebView scroll with Javascript?
You can execute Javascript in your UIWebView with this method
See Programmatically scroll to an Anchor Tag on how to use the Javascript.