I am using ACAccountStore for login through Facebook from native settings of iPhone for iOS version 6 or greater. For login I asked for the permission like below :
[accountStore requestAccessToAccountsWithType:accountType options:options completion:^(BOOL granted, NSError *error)
For sharing I want to use the same account. And for sharing i used code like below:
if([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook])
but, after login , in case the grant was denied before sharing through settings , then how to get the access of that account again ?
If i do the request again then , it prompts the alert for permissions again.
I just want the account access to that Facebook Account.
Can any one answer ? Thanks In advance. (: