ios - Importing Parse into a Xcode project -
i'm trying build application in xcode using parse backend. trying initialize parse project having issues. imported files needed , create bridging-header. trying enable local datastore , add application id , client key. problem need understanding why code process not auto generating me. when type parse , dot symbol not getting options. can me figure out going on please!
import uikit @uiapplicationmain class appdelegate: uiresponder, uiapplicationdelegate { var window: uiwindow? func application(application: uiapplication, didfinishlaunchingwithoptions launchoptions: [nsobject: anyobject]?) -> bool { parse.enablelocaldatastore() // t66osscwrm1ldzc73n7nzybts6yaufpcongniekl // f06jg1mzoebstknscwkksgbu1cpqcnkv5xuod1zi return true } }
the key , token not generated application need download parse website, signed paser using line below, values copied parse.
parse.setapplicationid("come parse", clientkey: "come parse")
parse has complete support swift 1.2 , not need header files, try download latest available sdk version swift in website.
Comments
Post a Comment