プログラムでWebビューを作成しましたが、このビューでスクロールを有効にできません。
スクロールを有効にするにはどうすればよいですか?
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0,40, 325, 1000)];
webView.contentMode = UIViewContentModeScaleAspectFit;
[webView setBackgroundColor:[UIColor clearColor]];
[webView loadHTMLString:html baseURL:nil];
[self.view insertSubview:webView atIndex:0];
前もって感謝します !