I was looking at this example for parsing xml using swift http://ashishkakkad.com/2014/10/xml-parsing-in-swift-language-ios-8-nsxmlparser/
as you can see in the example, the xml file is located somewhere in the web
var url:String="http://api.androidhive.info/pizza/?format=xml"
var urlToSend: NSURL = NSURL(string: url)
I want to do the same, but instead I want to have the xml file locally as part of my single view project. Where in the project I should place the xml file?
How can I access it from the file?