I am building an HTML file which will later be emailed through my app. Currently I am creating the html by appending the strings together. This is a painful process.
Is there another way that I can just put a large block of html into an NSString? Currently the line breaks in the string are screwing it up.
You could use the
NSMutableStringmethod-appendString:, or pull the HTML in through a file with theNSStringmethod-stringWithContentsOfFile:encoding:error:.