【发布时间】:2012-06-26 13:39:20
【问题描述】:
我已经实现了 UIWebView 并显示来自网络服务的内容,下面是代码
webView = [[UIWebView alloc] initWithFrame:CGRectMake(0,0,320,460)];
webView.scalesPageToFit = YES;
webView.dataDetectorTypes = YES;
webView.autoresizingMask = UIViewAutoresizingFlexibleHeight;
webView.delegate = self;
NSURL *targetURL = [NSURL URLWithString:delegate.S_Title];
request = [NSURLRequest requestWithURL:targetURL];
[webView loadRequest:request];
[self.view addSubview:webView];
但是当我向下滚动到底部时,它并没有滚动显示 webview 显示的完整内容。
【问题讨论】:
标签: iphone ios objective-c uiwebview