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
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
Try this
#import <Social/Social.h>
Make capital letter as initial when importing iOS frameworks.
Just like this.
#import "Social/Social.h"
#import "Accounts/Accounts.h"