FBLoginViewDelegate
이 클래스는 더 이상 최신 버전의 SDK에서 사용할 수 없습니다.
이 클래스의 최신 버전을 사용할 수 있습니다. 확인해보세요 최신 버전.

The FBLoginViewDelegate protocol defines the methods used to receive event notifications from FBLoginView objects.

Extends Protocol:NSObject
Declared in:FBLoginView.h
인스턴스 메서드
loginView:handleError:

Tells the delegate that there is a communication or authorization error.

매개변수설명
loginView

The login view that transitioned its view mode

error

An error object containing details of the error.

- (void)
loginView: (FBLoginView *)loginView
handleError: (NSError *)error;
Discussion:

See https://developers.facebook.com/docs/technical-guides/iossdk/errors/ for error handling best practices.

정의된 값: FBLoginView.h
loginViewFetchedUserInfo:user:

Tells the delegate that the view is has now fetched user info

매개변수설명
loginView

The login view that transitioned its view mode

user

The user info object describing the logged in user

- (void)
loginViewFetchedUserInfo: (FBLoginView *)loginView
user: (id<FBGraphUser>)user;
정의된 값: FBLoginView.h
loginViewShowingLoggedInUser:

Tells the delegate that the view is now in logged in mode

매개변수설명
loginView

The login view that transitioned its view mode

- (void) loginViewShowingLoggedInUser:(FBLoginView *)loginView;
정의된 값: FBLoginView.h
loginViewShowingLoggedOutUser:

Tells the delegate that the view is now in logged out mode

매개변수설명
loginView

The login view that transitioned its view mode

- (void) loginViewShowingLoggedOutUser:(FBLoginView *)loginView;
정의된 값: FBLoginView.h