swift - What is causing "Use of unresolved identifier ParseClientConfiguration"? -


i'm on final step of migrating parse heroku. need update code in app include new keys , sever info. put in code:

    let config = parseclientconfiguration(block: {         (parsemutableclientconfiguration) -> void in          parsemutableclientconfiguration.applicationid = "...";         parsemutableclientconfiguration.clientkey = "...";         parsemutableclientconfiguration.server = "...";     });      parse.initializewithconfiguration(config); 

and error on first line.

i have imported parse, i'm not entirely sure why i'm getting this.

i using outdated parse sdk. had update. working now.


Comments

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -