インターフェースファイル #import <UIKit/UIKit.h> @interface sampleViewController : UIViewController { UIWebView *webView; } @property(nonatomic, retain) UIWebView *webView; @end 実装ファイル #import "sampleViewController.h" @implementation sampleViewController @synthesize webView; - (void)viewDidLoad { [super viewDidLoad]; //UIWebViewの生成 webView = [[UIWebView alloc]initWithFrame:self.view.bounds]; webView.scalesPag