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 working on facebook integration in ios6.I added social,accounts frameworks and import as follows

#import "social /Social.h"
#import "accounts /Accounts.h"

but i got "social /Social.h not found" error.Any idea. Thanks in advance

share|improve this question
Could be the blank space before /Social.h ? :-) – LombaX Oct 30 '12 at 18:43
make capital letter as initial.. Social /Social.h and Accounts /Accounts.h – R.A Oct 30 '12 at 18:43

2 Answers

up vote 2 down vote accepted

Try this

#import <Social/Social.h> 
share|improve this answer
i delete space before /Social.h and it works thank u – fathik Oct 30 '12 at 19:09
if you want to make your app iOS 5 compatible, make sure to set the Social,Accounts,AddSupport framework as Optional from the build phases. stackoverflow.com/a/6480788/857865 – Kassem Oct 30 '12 at 22:21

Make capital letter as initial when importing iOS frameworks.

Just like this.

#import "Social/Social.h"
#import "Accounts/Accounts.h"
share|improve this answer
i tried but same error – fathik Oct 30 '12 at 19:01
try simply like this. import "Social.h" – R.A Oct 30 '12 at 19:05
i delete space before /Social.h and it works – fathik Oct 30 '12 at 19:12
Ok. thats good for u got an answer:-) – R.A Oct 30 '12 at 19:16

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.