I want to display data which is text data , in the uiwebview can some one guide how to do the same.
Asked
Active
Viewed 3,560 times
1 Answers
14
Use UIWebViews "loadHTMLString" method.
- (void)loadHTMLString:(NSString *)string baseURL:(NSURL *)baseURL
example:
[webView loadHTMLString:@"MyText" baseURL:nil];

Satyam
- 15,493
- 31
- 131
- 244