| | |
| | | |
| | | #import <FBSDKShareKit/FBSDKSharingContent.h> |
| | | |
| | | /*! |
| | | @abstract The common interface for sharing buttons. |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | | /** |
| | | The common interface for sharing buttons. |
| | | |
| | | @see FBSDKSendButton |
| | | |
| | | @see FBSDKShareButton |
| | | */ |
| | | NS_SWIFT_NAME(SharingButton) |
| | | @protocol FBSDKSharingButton <NSObject> |
| | | |
| | | /*! |
| | | @abstract The content to be shared. |
| | | /** |
| | | The content to be shared. |
| | | */ |
| | | @property (nonatomic, copy) id<FBSDKSharingContent> shareContent; |
| | | @property (nonatomic, copy, nullable) id<FBSDKSharingContent> shareContent; |
| | | |
| | | @end |
| | | |
| | | NS_ASSUME_NONNULL_END |