In a C# application I always used an app.config
file to save some data for my application to load when needed (e.g Connection String).
Wha
Updated for Swift 3 Xcode 8
Add a new property list to your project named "Sample.plist". Then see the following example.
let path: String = Bundle.main.path(forResource: "Sample", ofType: "plist")!
let sampleConf: NSDictionary = NSDictionary(contentsOfFile: path)!
print(sampleConf.object(forKey: "test") as! String)