iPhone - 当用户触摸状态栏时,使 UIWebView 子视图滚动到顶部(iOS 4)

发布于 2024-12-12 00:48:55 字数 265 浏览 0 评论 0原文

我有一个 mainView,其中包含:

  • 一个分页的滚动视图,
  • 一个页面控件
  • ,一个关闭按钮

,滚动视图的每个页面都包含一个包含 webView 的子视图。

用户可以从左到右从一个页面转到另一个页面,并上下滚动每个 webView。

但是...当用户触摸状态栏时,如何使当前显示的 webView 滚动到顶部?

编辑: 当然是针对iOS4。

I have a mainView that contains :

  • a paginated scrollView,
  • a page Control
  • a close button

and each page of the scrollView contains a subview that contains a webView.

The user can go left to right from pages to pages, and scroll up and down each webView.

But... how can I make the currently displayed webView scroll to top when the user touches the status bar ?

EDIT :
for iOS4 of course.

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

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

发布评论

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

评论(2

无语# 2024-12-19 00:48:55
[yourPaginatedScrollView setScrollsToTop:NO];
[(UIScrollView *)[yourWebView.subviews objectAtIndex:0] setScrollsToTop:YES];

第一行也很重要,否则将分配两个滚动视图 => iOS 无法真正选择,因此当您触摸状态栏时,它会决定不滚动视图滚动到顶部。

[yourPaginatedScrollView setScrollsToTop:NO];
[(UIScrollView *)[yourWebView.subviews objectAtIndex:0] setScrollsToTop:YES];

The first line is important too else two scrollviews will be assigned => iOS can't really choose, so it'll decide no scrollview scrolls to top when you touch the status bar.

喜爱皱眉﹌ 2024-12-19 00:48:55
  1. 如果您正在针对 iOS 5 基础 SDK 构建应用程序,您现在可以在 UIWebView 中使用公共属性“scrollView”,使用它您可以滚动到您想要的任何偏移量。

  2. 如果您正在构建 SDK

    5.0 中,可以使用 HTML 功能以另一种方式完成。您可以在 HTML 代码顶部的某个位置使用锚标记,在标记开始后的最开始处,包含此锚:

    <强>< A NAME="top_of_page">

现在,当用户点击状态栏时,触发此操作:

<A HREF="#top_of_page">

不知何故,不太确定如何!

也许通过使用:

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

???

  1. If you are building your application against iOS 5 base SDK, you can use now public property "scrollView" in UIWebView, using that you can scroll to whatever offset you desire to.

  2. If you are building for SDK < 5.0, it can be done in another way using HTML features. You can use Anchor tag somewhere at the top in your HTML code, at the very beginning just after tag begins, include this anchor:

    < A NAME="top_of_page">

Now when user taps on the the status bar, make this action trigger:

<A HREF="#top_of_page">

Somehow, not pretty sure how though!

Perhaps by using:

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

???

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