From f082c62bb40cad3ee93abd5432777ac0905eb374 Mon Sep 17 00:00:00 2001 From: lipengwei <lipengwei@nianben.com> Date: Fri, 27 Sep 2019 11:16:00 +0800 Subject: [PATCH] 3.8.3 --- frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h b/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h index 1792197..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 @@ -88,3 +92,5 @@ @end + +NS_ASSUME_NONNULL_END -- Gitblit v1.8.0