FBLoginTooltipViewDelegate
Cette classe n’est plus disponible dans la version la plus récente du SDK.
Une version plus récente de cette classe est disponible. Rendez-vous sur la dernière version.

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

Extends Protocol:NSObject
Declared in:FBLoginTooltipView.h
Méthodes d’instance
loginTooltipView:shouldAppear:

Asks the delegate if the tooltip view should appear

ParamètreDescription
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.

Déclaré dans : 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.

ParamètreDescription
view

The tooltip view.

- (void) loginTooltipViewWillAppear:(FBLoginTooltipView *)view;
Déclaré dans : FBLoginTooltipView.h
loginTooltipViewWillNotAppear:

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

ParamètreDescription
view

The tooltip view.

- (void) loginTooltipViewWillNotAppear:(FBLoginTooltipView *)view;
Déclaré dans : FBLoginTooltipView.h