In the new Facebook iOS SDK, the entire login process has been revamped. The old [FBSession activeSession].isOpen
trick doesn't work anymore. How can I reliably determine the state of a user's session in the new SDK?
My current thoughts are simply checking if [FBSDKProfile currentProfile]
is nil, but that doesn't seem like it would be 100% accurate, or the proper, most direct way to solve this problem.