Below is the code i have tried:
HTMLBrowserViewController.h
IBOutlet UIWebView * webControl;
HTMLBrowserViewController.m
webControl.scalesPageToFit = YES;
webControl.contentMode = UIViewContentModeScaleAspectFit;
webControl.delegate = self;
NSURL *url1=[NSURL URLWithString:webUrl];
NSURLRequest *requestObject=[NSURLRequest requestWithURL:url1 cachePolicy:NSURLCacheStorageAllowed timeoutInterval:15];
[webControl loadRequest:requestObject];