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
Post a Comment