How to show URL in UIWebView in iPhone/iPad/iPod :: N-FAQ Aasim Naseem, January 26, 2011March 12, 2024 Below is a small code to display contents over UIWebViewAssuming that you have declared a UIWebView in your header file; In my case it is detailWebView.NSString* str = @”http://www.yahoo.com”;NSURL* url = [NSURL URLWithString:str];[self.detailWebView loadRequest:[NSURLRequest requestWithURL:url]];Thats it; Keeping user interaction and multi-touch options checked in xib file will allow user to play with web page;stay blessed;share every bit of new thing you learn;— This post belongs to N-FAQ category where i post anything i learn new during my work; N-FAQ is basically Not-FAQ;Aasim NaseemI’m an engineer by profession, a blogger and a photojournalist by hobby. Seasonal writer at LAFZ Media UK. I write on different topics and things around us. Contact me at +971.56.126.8842 or Aasim.Naseem@outlook.com iOS Tips & Tutorials UIWebViewxcodexcode tip