If you want to communicate with Facebook via your app and considering that you have setup the project correctly i.e. the FacebookAppID etc, you call for an active session via
- (BOOL)openSessionWithAllowLoginUI:(BOOL)allowLoginUI
method. The access token stores the information that an app has been permitted with certain permissions your app asks and you check for a valid access token each time so that you don't have to validate the app each time.
FBSession.activeSession.isOpen is used to check if there is an active session in open state and if so, you can move forward with whatever your app intends to do with Facebook.