Error integrating facebook into ios6?

I am working on facebook integration in ios6.I added social account structures and imports as follows

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

but I got the error "social / Social.h not found". Any idea. thanks in advance

0
source share
2 answers

try it

 #import <Social/Social.h> 
+2
source

Make the initial capital letter when importing iOS frameworks.

Just.

 #import "Social/Social.h" #import "Accounts/Accounts.h" 
0
source

All Articles