The FBSDKLoginTooltipViewDelegate
protocol defines the methods used to receive event
notifications from FBSDKLoginTooltipView
objects.
Extends Protocol: | NSObject |
Declared in: | FBSDKLoginTooltipView.h |
loginTooltipView:shouldAppear:
Asks the delegate if the tooltip view should appear
Parámetro | Descripción |
---|---|
view | The tooltip view. |
appIsEligible | The value fetched from the server identifying if the app is eligible for the new login experience. |
- (BOOL)
loginTooltipView: | (FBSDKLoginTooltipView *)view |
shouldAppear: | (BOOL)appIsEligible; |
Use this method to customize display behavior.
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.
Parámetro | Descripción |
---|---|
view | The tooltip view. |
- (void)
loginTooltipViewWillAppear:(FBSDKLoginTooltipView *)view;
FBSDKLoginTooltipView.h
loginTooltipViewWillNotAppear:
Tells the delegate the tooltip view will not appear (i.e., was not added to the super view).
Parámetro | Descripción |
---|---|
view | The tooltip view. |
- (void)
loginTooltipViewWillNotAppear:(FBSDKLoginTooltipView *)view;
FBSDKLoginTooltipView.h