This is a repost from the Facebook developer forums, where no-one has responded yet.
This is what I would like to do:
- user touches Connect button
- code retrieves session and attempts to resume
- if session does not resume, pop up login dialog
- pop up feed dialog (after user has successfully logged in)
What actually happens in the case where a login is needed:
- user touches Connect button
- login dialog comes up (but user never sees it)
- feed dialog immediately comes up on top of it
- feed dialog spins forever because it is unable to connect
There doesn't seem to be a way to use the delegate methods to tell if the user has finished logging in; dialogDidSucceed never seems to be called for the login dialog. For that matter, there doesn't seem to be a way to tell if they cancelled out either (in which case going on to the feed dialog would be pointless).
Am I attempting the impossible?