Skip to content

Instantly share code, notes, and snippets.

@soggybag
Created December 25, 2015 07:18
Show Gist options
  • Save soggybag/7d43e4ca4dbbc76e0a33 to your computer and use it in GitHub Desktop.
Save soggybag/7d43e4ca4dbbc76e0a33 to your computer and use it in GitHub Desktop.
Load data from plist
func loadDataFromPlist(plist: String) -> NSArray? {
if let path = NSBundle.mainBundle().pathForResource(plist, ofType: "plist") {
return NSArray(contentsOfFile: path)
}
return nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment