Guest User

Untitled

a guest
Jan 18th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <html>
  2. <body>
  3. Hello World
  4. </body>
  5. </html>
  6.  
  7. NSString *YOURSTRING = @"YOUR String as contains Html tags";
  8. NSData *data = [YOURSTRING dataUsingEncoding:NSUTF8StringEncoding allowLossyConversion:YES];
  9.  
  10. [YOURWEBVIEW loadData:data MIMEType:@"text/plain" textEncodingName:@"UTF-8" baseURL:nil];
  11.  
  12. <html><br>
  13. <body><br>
  14. Hello World<br>
  15. </body><br>
  16. </html>
  17.  
  18. replaceOccurancesOfString:@"<" withString:@"<"
  19. replaceOccurancesOfString:@">" withString:@">"
Add Comment
Please, Sign In to add comment