| | |
| | | |
| | | #import <FBSDKShareKit/FBSDKSharingContent.h> |
| | | |
| | | /*! |
| | | @abstract A model for media content (photo or video) to be shared. |
| | | /** |
| | | A model for media content (photo or video) to be shared. |
| | | */ |
| | | @interface FBSDKShareMediaContent : NSObject <FBSDKSharingContent> |
| | | |
| | | /*! |
| | | @abstract Media to be shared. |
| | | @return Array of the media (FBSDKSharePhoto or FBSDKShareVideo) |
| | | /** |
| | | Media to be shared. |
| | | - Returns: Array of the media (FBSDKSharePhoto or FBSDKShareVideo) |
| | | */ |
| | | @property (nonatomic, copy) NSArray *media; |
| | | |
| | | /*! |
| | | @abstract Compares the receiver to another media content. |
| | | @param content The other content |
| | | @return YES if the receiver's values are equal to the other content's values; otherwise NO |
| | | /** |
| | | Compares the receiver to another media content. |
| | | - Parameter content: The other content |
| | | - Returns: YES if the receiver's values are equal to the other content's values; otherwise NO |
| | | */ |
| | | - (BOOL)isEqualToShareMediaContent:(FBSDKShareMediaContent *)content; |
| | | |