Conforms to NSObject
Declared in FBSDKLoginTooltipView.h

Overview

@protocol

The FBSDKLoginTooltipViewDelegate protocol defines the methods used to receive event notifications from FBSDKLoginTooltipView objects.

Instance Methods

loginTooltipView:shouldAppear:

Asks the delegate if the tooltip view should appear

- (BOOL)loginTooltipView:(FBSDKLoginTooltipView *)view shouldAppear:(BOOL)appIsEligible

Discussion

  • Parameter view: The tooltip view.
  • Parameter appIsEligible: The value fetched from the server identifying if the app is eligible for the new login experience.

Use this method to customize display behavior.

Declared In

FBSDKLoginTooltipView.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.

- (void)loginTooltipViewWillAppear:(FBSDKLoginTooltipView *)view

Discussion

  • Parameter view: The tooltip view.

Declared In

FBSDKLoginTooltipView.h

loginTooltipViewWillNotAppear:

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

- (void)loginTooltipViewWillNotAppear:(FBSDKLoginTooltipView *)view

Discussion

  • Parameter view: The tooltip view.

Declared In

FBSDKLoginTooltipView.h