Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm implementing a feature where users can share photos on Facebook from an iOS app. The presentShareDialogModallyFrom method looks promising however I'm having trouble using it. Specifically I don't know what to #import if anything. Also I'm not sure if I need to add additional frameworks.

Integrating Twitter was pretty easy: just add the Twitter framework and import the relevant header file.

What do I need to import/add to my iOS 6 app in order to use FBNativeDialogs?

share|improve this question

1 Answer

According to the Facebook SDK documentation, you should have Social.framework, Accounts.framework, and AdSupport.framework in your Linked Frameworks and Libraries. If you support any iOS below version 6.0, they should be Optional instead of Required.

In the class where you wish to use the presentShareDialogModallyFrom function, add #import <FacebookSDK/FacebookSDK.h>.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.