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

The FBLoginTooltipViewDelegate protocol defines the methods used to receive event notifications from FBLoginTooltipView objects.

Extends Protocol:NSObject
Declared in:FBLoginTooltipView.h
인스턴스 메서드
loginTooltipView:shouldAppear:

Asks the delegate if the tooltip view should appear

매개변수설명
view

The tooltip view.

appIsEligible

The value fetched from the server identifying if the app is eligible for the new login experience.

- (BOOL)
loginTooltipView: (FBLoginTooltipView *)view
shouldAppear: (BOOL)appIsEligible;
Discussion:

Use this method to customize display behavior.

정의된 값: FBLoginTooltipView.h
loginTooltipViewWillAppear:

Tells the delegate the tooltip view will appear, specifically after it's been added to the super view but before the fade in animation.

매개변수설명
view

The tooltip view.

- (void) loginTooltipViewWillAppear:(FBLoginTooltipView *)view;
정의된 값: FBLoginTooltipView.h
loginTooltipViewWillNotAppear:

Tells the delegate the tooltip view will not appear (i.e., was not added to the super view).

매개변수설명
view

The tooltip view.

- (void) loginTooltipViewWillNotAppear:(FBLoginTooltipView *)view;
정의된 값: FBLoginTooltipView.h