My question is: Can UIWebView
import from website only plain text? Without any formatting etc? Or mayby there is another simple way to import just simple text from website into an iOS app?
Thanks for help!
My question is: Can UIWebView
import from website only plain text? Without any formatting etc? Or mayby there is another simple way to import just simple text from website into an iOS app?
Thanks for help!
It shouldn't be done with UIWebView.
Use an Http Connection to get page content then strip the HTML tags.
or, in the did finish loading get html and strip it then reset the webview content
- (void)webViewDidFinishLoad:(UIWebView *)webView {
[myUIWebView loadHTMLString:strripedString baseURL:nil];
}