From 13e53a03f4d50169d0cf7f72d414753ae6b421ce Mon Sep 17 00:00:00 2001
From: hank <hank.zhang@proficientcity.com>
Date: Tue, 22 Jan 2019 11:04:39 +0800
Subject: [PATCH] 添加V3.8.0

---
 frameworks/FBSDKShareKit.framework/Headers/FBSDKShareAPI.h |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareAPI.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareAPI.h
index bf53883..01ae3e8 100644
--- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareAPI.h
+++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareAPI.h
@@ -27,16 +27,16 @@
   A utility class for sharing through the graph API.  Using this class requires an access token that
  has been granted the "publish_actions" permission.
 
- FBSDKShareAPI network requests are scheduled on the current run loop in the default run loop mode
- (like NSURLConnection). If you want to use FBSDKShareAPI in a background thread, you must manage the run loop
+ FBSDKShareAPI network requests are scheduled on the current run loop in the default run loop mode.
+ If you want to use FBSDKShareAPI in a background thread, you must manage the run loop
  yourself.
  */
 @interface FBSDKShareAPI : NSObject <FBSDKSharing>
 
 /**
   Convenience method to build up a share API with content and a delegate.
- - Parameter content: The content to be shared.
- - Parameter delegate: The receiver's delegate.
+ @param content The content to be shared.
+ @param delegate The receiver's delegate.
  */
 + (instancetype)shareWithContent:(id<FBSDKSharingContent>)content delegate:(id<FBSDKSharingDelegate>)delegate;
 
@@ -66,14 +66,14 @@
  required but not available.  This method does not validate the content on the receiver, so this can be checked before
  building up the content.
 
-- See:[FBSDKSharing validateWithError:]
- - Returns: YES if the receiver can send, otherwise NO.
+ @see [FBSDKSharing validateWithError:]
+ @return YES if the receiver can send, otherwise NO.
  */
-- (BOOL)canShare;
+@property (nonatomic, readonly) BOOL canShare;
 
 /**
   Creates an User Owned Open Graph object without an action.
- - Parameter openGraphObject: The open graph object to create.
+ @param openGraphObject The open graph object to create.
 
  Use this method to create an object alone, when an action is not going to be posted with the object.  If
  the object will be used within an action, just put the object in the action and share that as the shareContent and the
@@ -81,13 +81,13 @@
 
  Also see https://developers.facebook.com/docs/sharing/opengraph/object-api#objectapi-creatinguser
 
- - Returns: YES if the receiver was able to send the request to create the object, otherwise NO.
+ @return YES if the receiver was able to send the request to create the object, otherwise NO.
  */
 - (BOOL)createOpenGraphObject:(FBSDKShareOpenGraphObject *)openGraphObject;
 
 /**
   Begins the send from the receiver.
- - Returns: YES if the receiver was able to send the share, otherwise NO.
+ @return YES if the receiver was able to send the share, otherwise NO.
  */
 - (BOOL)share;
 

--
Gitblit v1.8.0