简体   繁体   中英

Error in facebook integration in ios6?

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

尝试这个

#import <Social/Social.h> 

Make capital letter as initial when importing iOS frameworks.

Just like this.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM