I'm porting my android app to iOS. In android I have the asset folder I can manage through the studio and where all my config files reside.
Where should reside my txt config files in Xcode: Supporting files, Poducts, xcassets, ...?
What should I use to open/read the files? Should I use the following constants?
let fileManager = NSFileManager.defaultManager()
let currDir = fileManager.currentDirectoryPath
is there a good article/tuto you recommend to read?
many thanks!!!