问题描述
- html转换到NSString的方法
-
我需要用HTML实现的长NSString:<html> <head> <title>Title of the document</title> </head> <body> <h1>My First Heading</h1> </body> </html>
有没有什么简洁的方法可以实现?比如这样:
NSString *a = [NSString stringWithLongString: " <html> <head> <title>Title of the document</title> </head> <body> <h1>My First Heading</h1> </body> </html>"]
不需要逐行转换的方法。
解决方案
你可以在每行的结尾加上一个 :
NSString *a = @" <html>
<head>
<title>Title of the document</title>
</head>
<body>
<h1>My First Heading</h1>
</body>
</html>";
不需要用到[NSString stringWithString:]
方法,并且没有这个方法:stringWithLongString
时间: 2024-10-25 06:47:29