From 37c026a8cae451b543b46d2941a221b8b1bd2c5e Mon Sep 17 00:00:00 2001 From: hank <hank.zhang@proficientcity.com> Date: Mon, 04 Sep 2017 10:03:43 +0800 Subject: [PATCH] 添加V3.6.5 --- frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h | 38 ++++++++++++++++++++------------------ 1 files changed, 20 insertions(+), 18 deletions(-) diff --git a/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h b/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h index 36a1af6..6148a07 100644 --- a/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h +++ b/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h @@ -20,39 +20,41 @@ @class FBSDKAccessToken; -/*! - @abstract Describes the result of a login attempt. +/** + Describes the result of a login attempt. */ @interface FBSDKLoginManagerLoginResult : NSObject -/*! - @abstract the access token. +/** + the access token. */ @property (copy, nonatomic) FBSDKAccessToken *token; -/*! - @abstract whether the login was cancelled by the user. +/** + whether the login was cancelled by the user. */ @property (readonly, nonatomic) BOOL isCancelled; -/*! - @abstract the set of permissions granted by the user in the associated request. - @discussion inspect the token's permissions set for a complete list. +/** + the set of permissions granted by the user in the associated request. + + inspect the token's permissions set for a complete list. */ @property (copy, nonatomic) NSSet *grantedPermissions; -/*! - @abstract the set of permissions declined by the user in the associated request. - @discussion inspect the token's permissions set for a complete list. +/** + the set of permissions declined by the user in the associated request. + + inspect the token's permissions set for a complete list. */ @property (copy, nonatomic) NSSet *declinedPermissions; -/*! - @abstract Initializes a new instance. - @param token the access token - @param isCancelled whether the login was cancelled by the user - @param grantedPermissions the set of granted permissions - @param declinedPermissions the set of declined permissions +/** + Initializes a new instance. + - Parameter token: the access token + - Parameter isCancelled: whether the login was cancelled by the user + - Parameter grantedPermissions: the set of granted permissions + - Parameter declinedPermissions: the set of declined permissions */ - (instancetype)initWithToken:(FBSDKAccessToken *)token isCancelled:(BOOL)isCancelled -- Gitblit v1.8.0