I have sharekit implemented in my app and it was working fine until I implemente login with facebook in another View.
The sharekit asks me to add the following on the app delegate:
- (BOOL)handleOpenURL:(NSURL*)url
{
NSString* scheme = [url scheme];
NSString* prefix = [NSString stringWithFormat:@"fb%@", SHKCONFIG(facebookAppId)];
if ([scheme hasPrefix:prefix])
return [SHKFacebook handleOpenURL:url];
return YES;
}
The thing is that the facebook login api asks you do add the following code also on appdelegate:
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
{
return [facebook handleOpenURL:url];
}
Now when I try to share something on facebook, it asks for the permission and then nothing happens because it enters the second method.
I tryied to track this instance variables "application", "sourceApplication", "url" and "annotation" but none of them gives me any clue on how to recognize if it comes from the login or share.
Any clues on that?