lipengwei
2019-09-27 4d81675066032fa5a4433d37c5939674abc7f5d9
frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideoContent.h
@@ -22,28 +22,27 @@
#import <FBSDKShareKit/FBSDKShareVideo.h>
#import <FBSDKShareKit/FBSDKSharingContent.h>
NS_ASSUME_NONNULL_BEGIN
/**
  A model for video content to be shared.
 */
NS_SWIFT_NAME(ShareVideoContent)
@interface FBSDKShareVideoContent : NSObject <FBSDKSharingContent>
/**
  The photo that represents the video.
 - Returns: The photo
 */
@property (nonatomic, copy) FBSDKSharePhoto *previewPhoto;
/**
  The video to be shared.
 - Returns: The video
 @return The video
 */
@property (nonatomic, copy) FBSDKShareVideo *video;
/**
  Compares the receiver to another video content.
 - Parameter content: The other content
 - Returns: YES if the receiver's values are equal to the other content's values; otherwise NO
 @param content The other content
 @return YES if the receiver's values are equal to the other content's values; otherwise NO
 */
- (BOOL)isEqualToShareVideoContent:(FBSDKShareVideoContent *)content;
@end
NS_ASSUME_NONNULL_END