From 49b8839fda3439edc31581527e84036e58f55f0f Mon Sep 17 00:00:00 2001 From: lpw <pengwei.li@gamehollywood.com> Date: Tue, 26 Jan 2021 09:43:00 +0800 Subject: [PATCH] 3.9.2 --- frameworks/FBSDKShareKit.framework/Headers/FBSDKSharingButton.h | 25 +++++++++++++++++++------ 1 files changed, 19 insertions(+), 6 deletions(-) diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharingButton.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharingButton.h index a3af423..145b285 100644 --- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharingButton.h +++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharingButton.h @@ -16,20 +16,33 @@ // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + #import <Foundation/Foundation.h> -#import <FBSDKShareKit/FBSDKSharingContent.h> +#import "FBSDKSharingContent.h" -/*! - @abstract The common interface for sharing buttons. +NS_ASSUME_NONNULL_BEGIN + +/** + The common interface for sharing buttons. + @see FBSDKSendButton + @see FBSDKShareButton */ +NS_SWIFT_NAME(SharingButton) @protocol FBSDKSharingButton <NSObject> -/*! - @abstract The content to be shared. +/** + The content to be shared. */ -@property (nonatomic, copy) id<FBSDKSharingContent> shareContent; +@property (nonatomic, copy, nullable) id<FBSDKSharingContent> shareContent; @end + +NS_ASSUME_NONNULL_END + +#endif -- Gitblit v1.8.0