From b19a78b27247f5f0761c35b5b3e8a41876eabb05 Mon Sep 17 00:00:00 2001
From: lpw <pengwei.li@gamehollywood.com>
Date: Tue, 20 Apr 2021 17:18:32 +0800
Subject: [PATCH] no message

---
 frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h |   19 ++++++++++++-------
 1 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h
index 09c13d1..2e135ff 100644
--- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h
+++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h
@@ -19,8 +19,10 @@
 #import <Photos/Photos.h>
 #import <UIKit/UIKit.h>
 
-#import <FBSDKCoreKit/FBSDKCopying.h>
-#import <FBSDKShareKit/FBSDKSharingValidation.h>
+#import "FBSDKCoreKitImport.h"
+#import "FBSDKShareMediaContent.h"
+#import "FBSDKSharingValidation.h"
+NS_ASSUME_NONNULL_BEGIN
 
 @class FBSDKSharePhoto;
 @class PHAsset;
@@ -28,7 +30,8 @@
 /**
   A video for sharing.
  */
-@interface FBSDKShareVideo : NSObject <FBSDKCopying, FBSDKSharingValidation, NSSecureCoding>
+NS_SWIFT_NAME(ShareVideo)
+@interface FBSDKShareVideo : NSObject <NSSecureCoding, FBSDKCopying, FBSDKShareMedia, FBSDKSharingValidation>
 
 /**
  Convenience method to build a new video object from raw data.
@@ -73,25 +76,25 @@
  The raw video data.
  - Returns: The video data.
  */
-@property (nonatomic, strong) NSData *data;
+@property (nonatomic, strong, nullable) NSData *data;
 
 /**
  The representation of the video in the Photos library.
  @return PHAsset that represents the video in the Photos library.
  */
-@property (nonatomic, copy) PHAsset *videoAsset;
+@property (nonatomic, copy, nullable) PHAsset *videoAsset;
 
 /**
   The file URL to the video.
  @return URL that points to the location of the video on disk
  */
-@property (nonatomic, copy) NSURL *videoURL;
+@property (nonatomic, copy, nullable) NSURL *videoURL;
 
 /**
   The photo that represents the video.
  @return The photo
  */
-@property (nonatomic, copy) FBSDKSharePhoto *previewPhoto;
+@property (nonatomic, copy, nullable) FBSDKSharePhoto *previewPhoto;
 
 /**
   Compares the receiver to another video.
@@ -107,3 +110,5 @@
 @property (nonatomic, copy, readonly) NSURL *videoURL;
 
 @end
+
+NS_ASSUME_NONNULL_END

--
Gitblit v1.8.0