禁用滚动网页视图

发布于 2024-12-06 21:00:34 字数 300 浏览 1 评论 0原文

可能的重复:
使用 Objective-c 禁用 UIWebView 默认滚动行为

我想禁用我的 webview 滚动,我已经检查了所有属性,但我找不到任何对我有用的属性,如果可能的话请帮助我。

谢谢。

Possible Duplicate:
Disable UIWebView default scrolling behavior using objective-c

I want to disable my webview scrolling, I have checked all property but I could not find any property which is useful for me , if this is possible please help me.

Thanks.

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

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

发布评论

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

评论(4

北方。的韩爷 2024-12-13 21:00:34

检查此代码可能会有所帮助

UIView* row = nil;
for(row in webView.subviews){
    if([row isKindOfClass:[UIScrollView class] ]){
        UIScrollView* scrollRow = (UIScrollView*) row;
        scrollRow.scrollEnabled = NO;
        scrollRow.bounces = NO;
        scrollRow.backgroundColor=[UIColor clearColor];
    }
}

Check this code which may be helpful

UIView* row = nil;
for(row in webView.subviews){
    if([row isKindOfClass:[UIScrollView class] ]){
        UIScrollView* scrollRow = (UIScrollView*) row;
        scrollRow.scrollEnabled = NO;
        scrollRow.bounces = NO;
        scrollRow.backgroundColor=[UIColor clearColor];
    }
}
尐籹人 2024-12-13 21:00:34

试试这个...

for(UIView *scrl in webView.subviews){
    if([row isKindOfClass:[UIScrollView class] ]){
        UIScrollView* scrollView = (UIScrollView*) scrl;
        // stop scrolling
        scrollView.scrollEnabled = NO;

       //stop bounceback of webView..
      scrollView.bounces = NO;
   }
 }

try this...

for(UIView *scrl in webView.subviews){
    if([row isKindOfClass:[UIScrollView class] ]){
        UIScrollView* scrollView = (UIScrollView*) scrl;
        // stop scrolling
        scrollView.scrollEnabled = NO;

       //stop bounceback of webView..
      scrollView.bounces = NO;
   }
 }
下壹個目標 2024-12-13 21:00:34

试试这个

[[[yourWebViewObject subviews] lastObject] setScrollEnabled:NO];

Try this

[[[yourWebViewObject subviews] lastObject] setScrollEnabled:NO];
刘备忘录 2024-12-13 21:00:34

使用这个效果很好; webDescription 是一个 UIWebView 对象。

[[webDescription.subviews lastObject] setScrollEnabled:NO];

Use this it works fine; webDescription is a UIWebView object.

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