FBLoginView
This class is no longer available in the most recent version of the SDK.
A more recent version of this class is available. Check out the latest version.
Inherits from:UIView
Declared in:FBLoginView.h
Properties
delegate

The delegate object that receives updates for selection and display control.

@property (nonatomic, assign) id<FBLoginViewDelegate> delegate;
Declared In: FBLoginView.h
permissions

The permissions to login with. Defaults to nil, meaning basic permissions.

@property (readwrite, copy) NSArray *permissions;
Discussion:

Copy) NSArray *permissions;

Declared In: FBLoginView.h
Instance Methods
init

Initializes and returns an FBLoginView object. The underlying session has basic permissions granted to it.

- (id) init;
Declared In: FBLoginView.h
initWithPermissions:

Initializes and returns an FBLoginView object constructed with the specified permissions.

ParameterDescription
permissions

An array of strings representing the permissions to request during the authentication flow. A value of nil will indicates basic permissions.

- (id) initWithPermissions:(NSArray *)permissions;
Declared In: FBLoginView.h