ユーザーがUIWebview
のタブを選択すると、サブビューとして読み込まれるがありますUISegmentedControl
。どういうわけか、許可することができませんpinch/zooming
。メソッドに次のコードを設定したviewDidLoad:
ので、動作するはずです。
self.myWebView = [[[UIWebView alloc] initWithFrame:self.view.frame] autorelease];
self.myWebView.backgroundColor = [UIColor whiteColor];
self.myWebView.scalesPageToFit = YES;
self.myWebView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
self.myWebView.delegate = self;
[self.view addSubview: myWebView];
UIWebView
NIBからをロードして、プログラムで作成してみましたが、役に立ちませんでした。足りないものはありますか?Webビューがピンチとズームを無視する原因は何ですか?
ありがとう!