0

我创建了一个示例,其中我将一个单词(.docx)导入到 uiwebview 并显示。我得到了输出,但我不想显示水平滚动条并且垂直滚动也不能正常工作我可以看到黑色当我垂直滚动时,webview 后面的空间。这是我的代码:

#import <UIKit/UIKit.h>

@interface userguideLinesNewViewController : UIViewController {
    IBOutlet UIWebView *webView;
}
@property (nonatomic,retain) UIWebView *webView;
-(void)loadDocument:(NSString*)documentName inView:(UIWebView*)webViews;
@end
#import "userguideLinesNewViewController.h"

@implementation userguideLinesNewViewController
@synthesize webView;
-(void)loadDocument:(NSString*)documentName inView:(UIWebView*)webViews
{

 NSString *path = [[NSBundle mainBundle] pathForResource:@"BTBP CLARITY SKIN ADVISORuser.docx" ofType:nil];
    NSURL *url = [NSURL fileURLWithPath:path];
 NSURLRequest *request = [NSURLRequest requestWithURL:url];
 [webViews loadRequest:request];
}
- (void)viewDidLoad {
    [super viewDidLoad];
 [self loadDocument:@"BTBP CLARITY SKIN ADVISORuser.docx" inView:self.webView];
}
4

1 回答 1

2

您可以查看有关此的其他主题:阻止 UIWebView 垂直“弹跳”?:-)

没有像 UIScrollView 这样的方法。但是有某种方法可以实现你的目标;-)

这是我的方式。

- (void)disableBounce {

    for(self.subviews 中的 id 子视图)
        if ([[子视图类] isSubclassOfClass: [UIScrollView 类]])
            ((UIScrollView *)subview).bounces = NO;

}

享受...

于 2010-09-21T09:01:10.357 回答