Last active
March 27, 2016 06:31
-
-
Save stansidel/09e3409ab848424dc178 to your computer and use it in GitHub Desktop.
Parse Server initialisation in iOS as told on Udemy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let parseConfiguration = ParseClientConfiguration(block: { (ParseMutableClientConfiguration) -> Void in | |
ParseMutableClientConfiguration.applicationId = "myAppId" | |
ParseMutableClientConfiguration.clientKey = "myMasterKey" // This is wrong! Never put your master key into the sources. | |
ParseMutableClientConfiguration.server = "https://anotherdarntest.herokuapp.com/parse" | |
}) | |
Parse.initializeWithConfiguration(parseConfiguration) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment