OK, here is my pragmatic solution to the same problem.
You authenticate your iOSApp with facebook. This gives you an access_token and you can then get the user's facebook id (fb_id) from facebook.
You now want to use this authentication to authenticate a request to some service related to iOSApp (yourService).
Send the fb_id and access_token with your request to yourService securely (e.g. with https).
yourService then uses the fb_id and access_token to make an arbitrary social graph call, for example:
https://graph.facebook.com/fb_id?field=name&access_token=access_token
This call will return an appropriate error if the access_token is invalid or does not match the fb_id so yourService can now fulfil or deny the request on the basis of the return value.
yourService and iOSApp can read or modify the FB graph according to the permissions and status of access_token but the above is all you need if you are just looking to authenticate the user with yourService when they've already authenticated with your iOSApp.
There could be some issues with FB policy regarding the transfer of the access_token but as long as you use https for the transfer it is as secure as the exchange between iOSApp and Facebook.