| | |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | #import <FBSDKShareKit/FBSDKSharePhoto.h> |
| | | #import <FBSDKShareKit/FBSDKShareVideo.h> |
| | | #import <FBSDKShareKit/FBSDKSharingContent.h> |
| | | #import "FBSDKSharePhoto.h" |
| | | #import "FBSDKShareVideo.h" |
| | | #import "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. |
| | | @return The photo |
| | | */ |
| | | @property (nonatomic, copy) FBSDKSharePhoto *previewPhoto |
| | | DEPRECATED_MSG_ATTRIBUTE("Use `video.previewPhoto`"); |
| | | |
| | | /** |
| | | The video to be shared. |
| | |
| | | - (BOOL)isEqualToShareVideoContent:(FBSDKShareVideoContent *)content; |
| | | |
| | | @end |
| | | |
| | | NS_ASSUME_NONNULL_END |