- (void)viewDidLoad {
[super viewDidLoad];
CGRect bouds = [[UIScreen mainScreen] bounds];
UIWebView *webView = [[UIWebView alloc] initWithFrame:bouds];
NSURL *filePath = [[NSBundle mainBundle] withExtension:nil];
NSURLRequest *request = [NSURLRequest requestWithURL:filePath];
[webView loadRequest:request];
webView.delegate = self;
webView.scrollView.bounces = NO;
[self.view addSubview:webView];
}