This is what Im trying to do: Get a xml from apple\'s RSS containing info about apps, parse it, and display the apps in an UITable view.
The problem is that after the \"
I was also facing same problem. I solved this by running my code on UI thread as :
NSOperationQueue.mainQueue().addOperationWithBlock(){ //Perform action on main thread tableView.reloadData(); }