I have created a facebook authentication in my iPhone app, i followed this tutorial for that.But except one line of code,that is
- (void)applicationDidBecomeActive:(UIApplication *)application
{
[FBSession.activeSession handleDidBecomeActive];
}
when i use this,it is an error shows -- No visible @interface for 'FBSession' declares the selector handleDidBecomeActive
But still the authentication works fine while i click the logIn button, Problem is my authentication window is just showing "basic info"-i need to access "post on your behalf" also
my authentication window is like this

i need to authenticate like this(as in FB tutorial)

Cant find out the error,Will it be in app creation in Facebook/or my authentication error in Iphone coding
If anyone got the error,please help me to clarify

handleDidBecomeActiveis new in Facebook SDK 3.1. – Joachim Isaksson Jan 1 at 15:04handleDidBecomeActiveusing the 3.1 SDK, my test project using it compiles without any warnings or errors importing only<FacebookSDK/FacebookSDK.h>. – Joachim Isaksson Jan 1 at 16:52