I am working on app that contains facebook login .After login with face book I need to go to native application & app should display user name & image that was there in
Apart from implementing :
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation`
you have to add URL Types > URL Schemes
into your application plist, with value : fb1234567890
where 1234567890
is your App ID.
See Item 5: https://developers.facebook.com/docs/getting-started/facebook-sdk-for-ios/