Here it is finally, the file parser you've all obviously been waiting for. A ini file parser for swift.
Clone, build and import the framework bundle into swift projects.
Create a inifile object:
let iniFile = Inifile(filepathAsString: "path/to/some/ini/file")
Then access properties:
let configuration = iniFile.sections
let propertyValue = configuration["exampleSection"]["exampleProperty"]