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
try it
#import <Social/Social.h>
Make the initial capital letter when importing iOS frameworks.
Just.
#import "Social/Social.h" #import "Accounts/Accounts.h"