Reputation: 2646
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...
I have linked the frameworks in build phases...
I want autocompletion similar to this...
But I get nothing related to the Parse framework!!!!
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
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...
Upvotes: 3