我正在加载一个文本, [WebView loadHTMLString:html baseURL:nil ];
但在他们使用的 XML 中,/n
而不是<br />
我如何替换一个/n
to, <br />
以便我可以在文本之间输入?
文本现在类似于:
Lorem Ipsum /n dolar blabla
需要是
Lorem Ipsum Dolar blabla
NSString *Display = [NSString stringWithFormat:@"%@", Message];
NSString *html = [NSString stringWithFormat:@"<html><head><!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\"><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />></head><body>%@</body></html> ",Display];
[WebView loadHTMLString:html baseURL:nil ];