我对这个小问题感到震惊,只是想不出办法。我的歉意和感激。
描述:
针对 iPhone 的具有全屏 UIWebView 的 UIView 使用viewDidLoad
方法以编程方式加载网页。将应用程序运行到模拟器中时会显示 UIWebView,网页已加载,但不允许捏合。因此,我可以在页面上移动,但不能使用多手势调整大小。
细节:
- (void)viewDidLoad {
NSString *urlAddress = @"http://www.someurl.it";
NSURL *url = [NSURL URLWithString:urlAddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[webView loadRequest:requestObj];
webView.userInteractionEnabled=YES;
webView.autoresizingMask=YES;
webView.multipleTouchEnabled=YES;
}