I have looked around and my current situation uses MWFeedParser which is a fantastic parser. What my app does is read a news website feed, display the news stories in a table, then select which story you want and display the full story in a new ViewController.
So far I have this functionality down, but I'm struggling to work with the text. After using .dataUsingEncoding(NSUTF16StringEncoding) on the downloaded XML data, this turns the unreadable text in to clear readable text.
My problem arises when I have to implement the adding of the image, I have a way of getting the image and adding it to the story in my table view next to the title, but I do not know how to keep the struct of the text on my full story ViewController as is on the news website (so adding the image into the right part of the text: Example, after second paragraph)
If anyone can tell me how to add proper spacing where paragraphs should be that would be awesome. General manipulation of this text would be helpful I am completely clueless so far.