我是 iPad 开发者的新手,
我正在为我的应用程序制作 ePub 阅读器,我在其中加载我的 ePub 页面UIWebView
当我加载我的页面时,webview
它只会滚动到一些限制,
这是我的代码片段,
- (void)viewDidLoad {
...
_webview=[[UIWebView alloc]init];
_webview.frame=CGRectMake(0, 0, 770, 960);
[_webview setBackgroundColor:[UIColor grayColor]];
_webview.delegate=self;
[self.view addSubview:_webview];
[self loadPage];
...
}
- (void)loadPage{
[_webview loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:_pagesPath]]];
[self._webview sizeToFit];
_webview.scalesPageToFit=TRUE;
_webview.scrollView.bounces = NO;
_webview.autoresizesSubviews = YES;
}