From 88188ea7992a90e66db694e9fc1b304a59608044 Mon Sep 17 00:00:00 2001 From: lipengwei <lipengwei@nianben.com> Date: Thu, 26 Sep 2019 12:29:34 +0800 Subject: [PATCH] 3.8.3 --- frameworks/FBSDKLoginKit.framework/Headers/FBSDKDeviceLoginManager.h | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/frameworks/FBSDKLoginKit.framework/Headers/FBSDKDeviceLoginManager.h b/frameworks/FBSDKLoginKit.framework/Headers/FBSDKDeviceLoginManager.h index 3f6f036..1eca082 100644 --- a/frameworks/FBSDKLoginKit.framework/Headers/FBSDKDeviceLoginManager.h +++ b/frameworks/FBSDKLoginKit.framework/Headers/FBSDKDeviceLoginManager.h @@ -28,6 +28,7 @@ /*! @abstract A delegate for `FBSDKDeviceLoginManager`. */ +NS_SWIFT_NAME(DeviceLoginManagerDelegate) @protocol FBSDKDeviceLoginManagerDelegate <NSObject> /*! @@ -36,7 +37,8 @@ @param loginManager the login manager instance. @param codeInfo the code info data. */ -- (void)deviceLoginManager:(FBSDKDeviceLoginManager *)loginManager startedWithCodeInfo:(FBSDKDeviceLoginCodeInfo *)codeInfo; +- (void)deviceLoginManager:(FBSDKDeviceLoginManager *)loginManager + startedWithCodeInfo:(FBSDKDeviceLoginCodeInfo *)codeInfo; /*! @abstract Indicates the device login flow has finished. @@ -60,13 +62,14 @@ See [Facebook Device Login](https://developers.facebook.com/docs/facebook-login/for-devices). */ +NS_SWIFT_NAME(DeviceLoginManager) @interface FBSDKDeviceLoginManager : NSObject <NSNetServiceDelegate> /*! @abstract Initializes a new instance. @param permissions permissions to request. */ -- (instancetype)initWithPermissions:(nullable NSArray<NSString *> *)permissions +- (instancetype)initWithPermissions:(NSArray<NSString *> *)permissions enableSmartLogin:(BOOL)enableSmartLogin NS_DESIGNATED_INITIALIZER; @@ -81,7 +84,7 @@ /*! @abstract the requested permissions. */ -@property (nullable, nonatomic, copy, readonly) NSArray<NSString *> *permissions; +@property (nonatomic, copy, readonly) NSArray<NSString *> *permissions; /*! @abstract the optional URL to redirect the user to after they complete the login. -- Gitblit v1.8.0