I would like to have long 'NSString' with this html:
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<h1>My First Heading</h1>
</body>
</html>
Is there a comfortable way of doing this? Something like:
NSString *a = [NSString stringWithLongString: "
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<h1>My First Heading</h1>
</body>
</html>"]
Without having to sqwush everything to one line?