From 7cdaa24f3ba637804aca9247ae809c4cc1acc6ed Mon Sep 17 00:00:00 2001
From: lipengwei <lipengwei@nianben.com>
Date: Wed, 27 May 2020 09:41:28 +0800
Subject: [PATCH] 3.8.4

---
 frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h |   16 +++++++++++-----
 1 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h b/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h
index ad2c9d5..63f9e32 100644
--- a/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h
+++ b/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h
@@ -20,6 +20,8 @@
 
 #import <FBSDKLoginKit/FBSDKTooltipView.h>
 
+NS_ASSUME_NONNULL_BEGIN
+
 @protocol FBSDKLoginTooltipViewDelegate;
 
 /**
@@ -37,6 +39,7 @@
   (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 */
@@ -44,7 +47,7 @@
 
 /**  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
 
@@ -54,6 +57,7 @@
   The `FBSDKLoginTooltipViewDelegate` protocol defines the methods used to receive event
  notifications from `FBSDKLoginTooltipView` objects.
  */
+NS_SWIFT_NAME(LoginTooltipViewDelegate)
 @protocol FBSDKLoginTooltipViewDelegate <NSObject>
 
 @optional
@@ -61,8 +65,8 @@
 /**
   Asks the delegate if the tooltip view should appear
 
- - Parameter view: The tooltip view.
- - Parameter appIsEligible: The value fetched from the server identifying if the app
+ @param view The tooltip view.
+ @param appIsEligible The value fetched from the server identifying if the app
  is eligible for the new login experience.
 
 
@@ -74,7 +78,7 @@
   Tells the delegate the tooltip view will appear, specifically after it's been
  added to the super view but before the fade in animation.
 
- - Parameter view: The tooltip view.
+ @param view The tooltip view.
  */
 - (void)loginTooltipViewWillAppear:(FBSDKLoginTooltipView *)view;
 
@@ -82,9 +86,11 @@
   Tells the delegate the tooltip view will not appear (i.e., was not
  added to the super view).
 
- - Parameter view: The tooltip view.
+ @param view The tooltip view.
  */
 - (void)loginTooltipViewWillNotAppear:(FBSDKLoginTooltipView *)view;
 
 
 @end
+
+NS_ASSUME_NONNULL_END

--
Gitblit v1.8.0