From b19a78b27247f5f0761c35b5b3e8a41876eabb05 Mon Sep 17 00:00:00 2001 From: lpw <pengwei.li@gamehollywood.com> Date: Tue, 20 Apr 2021 17:18:32 +0800 Subject: [PATCH] no message --- frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h | 53 +++++++++++++++++++++++++++++++---------------------- 1 files changed, 31 insertions(+), 22 deletions(-) diff --git a/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h b/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h index e6a9411..1e03eea 100644 --- a/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h +++ b/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginTooltipView.h @@ -16,19 +16,25 @@ // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + #import <UIKit/UIKit.h> -#import <FBSDKLoginKit/FBSDKTooltipView.h> +#import "FBSDKTooltipView.h" + +NS_ASSUME_NONNULL_BEGIN @protocol FBSDKLoginTooltipViewDelegate; -/*! - @class FBSDKLoginTooltipView +/** - @abstract Represents a tooltip to be displayed next to a Facebook login button + Represents a tooltip to be displayed next to a Facebook login button to highlight features for new users. - @discussion The `FBSDKLoginButton` may display this view automatically. If you do + + The `FBSDKLoginButton` may display this view automatically. If you do not use the `FBSDKLoginButton`, you can manually call one of the `present*` methods as appropriate and customize behavior via `FBSDKLoginTooltipViewDelegate` delegate. @@ -37,52 +43,51 @@ (e.g., to test the UI layout) by implementing the delegate or setting `forceDisplay` to YES. */ +NS_SWIFT_NAME(FBLoginTooltipView) @interface FBSDKLoginTooltipView : FBSDKTooltipView -/*! @abstract the delegate */ -@property (nonatomic, assign) id<FBSDKLoginTooltipViewDelegate> delegate; +/** the delegate */ +@property (nonatomic, weak) id<FBSDKLoginTooltipViewDelegate> delegate; -/*! @abstract if set to YES, the view will always be displayed and the delegate's +/** 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 -/*! +/** @protocol - @abstract - The `FBSDKLoginTooltipViewDelegate` protocol defines the methods used to receive event + The `FBSDKLoginTooltipViewDelegate` protocol defines the methods used to receive event notifications from `FBSDKLoginTooltipView` objects. */ +NS_SWIFT_NAME(LoginTooltipViewDelegate) @protocol FBSDKLoginTooltipViewDelegate <NSObject> @optional -/*! - @abstract - Asks the delegate if the tooltip view should appear +/** + Asks the delegate if the tooltip view should appear @param view The tooltip view. @param appIsEligible The value fetched from the server identifying if the app is eligible for the new login experience. - @discussion Use this method to customize display behavior. + + Use this method to customize display behavior. */ - (BOOL)loginTooltipView:(FBSDKLoginTooltipView *)view shouldAppear:(BOOL)appIsEligible; -/*! - @abstract - Tells the delegate the tooltip view will appear, specifically after it's been +/** + Tells the delegate the tooltip view will appear, specifically after it's been added to the super view but before the fade in animation. @param view The tooltip view. */ - (void)loginTooltipViewWillAppear:(FBSDKLoginTooltipView *)view; -/*! - @abstract - Tells the delegate the tooltip view will not appear (i.e., was not +/** + Tells the delegate the tooltip view will not appear (i.e., was not added to the super view). @param view The tooltip view. @@ -91,3 +96,7 @@ @end + +NS_ASSUME_NONNULL_END + +#endif -- Gitblit v1.8.0