Get if my app is authorized to use facebook [iOS 6, FB SDK 3.2]
问题 how can i know is my app is authorized by user to use Facebook? You can enable or disable it in "Settings -> Privacy -> Facebook". I have to get this state. I'm using Facebook 3.2 Thank you all! 回答1: You can use the ACAccountStore to get the Facebook account(if it is available) and check if the access is granted: ACAccountStore *accountStore = [[ACAccountStore alloc] init]; ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook]; if