| | |
| | | |
| | | #import <FBSDKLoginKit/FBSDKTooltipView.h> |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | | @protocol FBSDKLoginTooltipViewDelegate; |
| | | |
| | | /** |
| | |
| | | (e.g., to test the UI layout) by implementing the delegate or setting `forceDisplay` to YES. |
| | | |
| | | */ |
| | | NS_SWIFT_NAME(FBLoginTooltipView) |
| | | @interface FBSDKLoginTooltipView : FBSDKTooltipView |
| | | |
| | | /** the delegate */ |
| | |
| | | |
| | | /** if set to YES, the view will always be displayed and the delegate's |
| | | `loginTooltipView:shouldAppear:` will NOT be called. */ |
| | | @property (nonatomic, assign) BOOL forceDisplay; |
| | | @property (nonatomic, assign, getter=shouldForceDisplay) BOOL forceDisplay; |
| | | |
| | | @end |
| | | |
| | |
| | | The `FBSDKLoginTooltipViewDelegate` protocol defines the methods used to receive event |
| | | notifications from `FBSDKLoginTooltipView` objects. |
| | | */ |
| | | NS_SWIFT_NAME(LoginTooltipViewDelegate) |
| | | @protocol FBSDKLoginTooltipViewDelegate <NSObject> |
| | | |
| | | @optional |
| | |
| | | |
| | | |
| | | @end |
| | | |
| | | NS_ASSUME_NONNULL_END |