我已经为 iPhone 构建了一个应用程序。
在这个应用程序中,我需要在UIWebView
.
我已经这样实现了
NSString *urlAddress = @"http://chat.stackoverflow.com/faq";
// Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];
// URL Request Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
// Load the request in the UIWebView.
[documentsWebView loadRequest:requestObj];
问题是网站使用缩放系数 100% 显示。因此,我的用户必须垂直和水平滚动。如何调整缩放系数,以便默认情况下只需要垂直滚动?