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/FBSDKAppInviteDialog.h |   34 +++++++++++++++++-----------------
 1 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteDialog.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteDialog.h
index 9994ff9..0af2790 100644
--- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteDialog.h
+++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteDialog.h
@@ -30,23 +30,23 @@
 
 /**
  Convenience method to show a FBSDKAppInviteDialog
- - Parameter viewController: A UIViewController to present the dialog from.
- - Parameter content: The content for the app invite.
- - Parameter delegate: The receiver's delegate.
- - Warning: This method is deprecated.
+ @param viewController A UIViewController to present the dialog from.
+ @param content The content for the app invite.
+ @param delegate The receiver's delegate.
+ @warning This method is deprecated.
  */
 + (instancetype)showFromViewController:(UIViewController *)viewController
                            withContent:(FBSDKAppInviteContent *)content
                               delegate:(id<FBSDKAppInviteDialogDelegate>)delegate
-__attribute__ ((deprecated("App Invites no longer supported")));
+DEPRECATED_MSG_ATTRIBUTE("App Invites no longer supported");
 
 
 /**
 
- - Warning:use showFromViewController:withContent:delegate: instead
+ @warning use showFromViewController:withContent:delegate: instead
  */
 + (instancetype)showWithContent:(FBSDKAppInviteContent *)content delegate:(id<FBSDKAppInviteDialogDelegate>)delegate
-__attribute__ ((deprecated("use showFromViewController:withContent:delegate: instead")));
+DEPRECATED_MSG_ATTRIBUTE("use showFromViewController:withContent:delegate: instead");
 
 /**
  A UIViewController to present the dialog from.
@@ -72,21 +72,21 @@
  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:validateWithError:
- - Returns: YES if the receiver can show the dialog, otherwise NO.
+ @see validateWithError:
+ @return YES if the receiver can show the dialog, otherwise NO.
  */
-- (BOOL)canShow;
+@property (nonatomic, readonly) BOOL canShow;
 
 /**
  Begins the app invite from the receiver.
- - Returns: YES if the receiver was able to show the dialog, otherwise NO.
+ @return YES if the receiver was able to show the dialog, otherwise NO.
  */
 - (BOOL)show;
 
 /**
  Validates the content on the receiver.
- - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem.
- - Returns: YES if the content is valid, otherwise NO.
+ @param errorRef If an error occurs, upon return contains an NSError object that describes the problem.
+ @return YES if the content is valid, otherwise NO.
  */
 - (BOOL)validateWithError:(NSError *__autoreleasing *)errorRef;
 
@@ -103,15 +103,15 @@
 
 /**
  Sent to the delegate when the app invite completes without error.
- - Parameter appInviteDialog: The FBSDKAppInviteDialog that completed.
- - Parameter results: The results from the dialog.  This may be nil or empty.
+ @param appInviteDialog The FBSDKAppInviteDialog that completed.
+ @param results The results from the dialog.  This may be nil or empty.
  */
 - (void)appInviteDialog:(FBSDKAppInviteDialog *)appInviteDialog didCompleteWithResults:(NSDictionary *)results;
 
 /**
  Sent to the delegate when the app invite encounters an error.
- - Parameter appInviteDialog: The FBSDKAppInviteDialog that completed.
- - Parameter error: The error.
+ @param appInviteDialog The FBSDKAppInviteDialog that completed.
+ @param error The error.
  */
 - (void)appInviteDialog:(FBSDKAppInviteDialog *)appInviteDialog didFailWithError:(NSError *)error;
 

--
Gitblit v1.8.0