From e81c27b13950ca02baa879ae7b8108c0c3ef7fb0 Mon Sep 17 00:00:00 2001 From: hank <hank.zhang@proficientcity.com> Date: Thu, 20 Jun 2019 09:47:31 +0800 Subject: [PATCH] 添加V3.8.2 --- frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h | 16 +++++++++++----- 1 files changed, 11 insertions(+), 5 deletions(-) diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h index 09c13d1..4ceb32a 100644 --- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h +++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h @@ -20,7 +20,10 @@ #import <UIKit/UIKit.h> #import <FBSDKCoreKit/FBSDKCopying.h> +#import <FBSDKShareKit/FBSDKShareMediaContent.h> #import <FBSDKShareKit/FBSDKSharingValidation.h> + +NS_ASSUME_NONNULL_BEGIN @class FBSDKSharePhoto; @class PHAsset; @@ -28,7 +31,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 +77,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 +111,5 @@ @property (nonatomic, copy, readonly) NSURL *videoURL; @end + +NS_ASSUME_NONNULL_END -- Gitblit v1.8.0