Josh Engelsma
Josh Engelsma

Reputation: 2646

Setting up Parse in iOS

I am having some difficulties setting up the Parse framework in iOS. I have set up all the libraries, linked frameworks etc... The specific issue is that I cannot get the subclasses to autocomplete anything related to parse

I have included the libraries...

enter image description here

I have linked the frameworks in build phases...

enter image description here

I want autocompletion similar to this...

enter image description here

But I get nothing related to the Parse framework!!!!

enter image description here

Sorry if this is a dumb question. I have used parse before doing the same thing, but now its not working. Anyone know whats up?

Upvotes: 1

Views: 282

Answers (1)

Josh Engelsma
Josh Engelsma

Reputation: 2646

Well, I finally figured out something that works...

Because parse recently split up their frameworks into multiple frameworks you need to include both Parse.framework and ParseUI.framework. This step I had done correctly. BUT, in addition, you need to import the ParseUI framework in the AppDelegate file to get visibility for auto completion of the ParseUI headers... hopefully this mistake on my part saves someone else a headache

I just did the #import <ParseUI/ParseUI.h>

in my AppDelegate.m file...

enter image description here

Upvotes: 3

Related Questions