I have HTML Content which was being displayed in a UITextView. The next iteration of my app is display the HTML contents into a UIWebView
UITextView
UIWebView
This should do the trick:
NSString *myHTML = @"Hello, world!"; [myUIWebView loadHTMLString:myHTML baseURL:nil];