点击导航栏滚动到顶部

发布于 2024-08-14 06:51:22 字数 104 浏览 6 评论 0原文

我有一个很长的 UIWebView,我需要添加一种方法让用户点击 UINavigationBar 滚动到顶部(类似于 Facebook 应用程序,点击时它会发光)。

我该怎么做?

I have a really long UIWebView, and I need to add a way for the user to tap the UINavigationBar to scroll to top (something like the Facebook app, where it's little glow when you tap).

How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

世态炎凉 2024-08-21 06:51:22

在iOS5中,您现在可以直接访问UIScrollView,允许您滚动到顶部。

[webView.scrollView scrollRectToVisible:animated:]

这应该可以满足您需要的一切。

In iOS5, you can now access the UIScrollView directly, allowing you to scroll to top.

[webView.scrollView scrollRectToVisible:animated:]

That should take care of everything that you need.

-柠檬树下少年和吉他 2024-08-21 06:51:22

您可以使用 javascript 将 Web 视图滚动到顶部。您可以使用 Objective-C 端执行 javascript

- (NSString *)stringByEvaluatingJavaScriptFromString:(NSString *)script

You could use javascript to scroll the web view to the top. You could execute the javascript from the Objective-C side using

- (NSString *)stringByEvaluatingJavaScriptFromString:(NSString *)script
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文