From afd70759b9bf1bd99c9a5f3578ce2c5474090340 Mon Sep 17 00:00:00 2001 From: Wuyx <1139965056@qq.com> Date: Tue, 17 Jan 2017 12:12:30 +0800 Subject: [PATCH] WAFbImpl --- frameworks/FBSDKShareKit.framework/Headers/FBSDKShareConstants.h | 30 ++++++++++++++++-------------- 1 files changed, 16 insertions(+), 14 deletions(-) diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareConstants.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareConstants.h index 859f4fa..1d73ecf 100644 --- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareConstants.h +++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareConstants.h @@ -20,35 +20,37 @@ #import <FBSDKCoreKit/FBSDKMacros.h> -/*! - @abstract The error domain for all errors from FBSDKShareKit. - @discussion Error codes from the SDK in the range 200-299 are reserved for this domain. +/** + The error domain for all errors from FBSDKShareKit. + + Error codes from the SDK in the range 200-299 are reserved for this domain. */ FBSDK_EXTERN NSString *const FBSDKShareErrorDomain; -/*! - @typedef NS_ENUM(NSInteger, FBSDKShareErrorCode) - @abstract Error codes for FBSDKShareErrorDomain. +/** + NS_ENUM(NSInteger, FBSDKShareErrorCode) + Error codes for FBSDKShareErrorDomain. */ typedef NS_ENUM(NSInteger, FBSDKShareErrorCode) { - /*! - @abstract Reserved. + /** + Reserved. */ FBSDKShareReservedErrorCode = 200, - /*! - @abstract The error code for errors from uploading open graph objects. + /** + The error code for errors from uploading open graph objects. */ FBSDKShareOpenGraphErrorCode, - /*! - @abstract The error code for when a sharing dialog is not available. - @discussion Use the canShare methods to check for this case before calling show. + /** + The error code for when a sharing dialog is not available. + + Use the canShare methods to check for this case before calling show. */ FBSDKShareDialogNotAvailableErrorCode, - /*! + /** @The error code for unknown errors. */ FBSDKShareUnknownErrorCode, -- Gitblit v1.8.0