| | |
| | | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| | | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| | | |
| | | #import "TargetConditionals.h" |
| | | |
| | | #if !TARGET_OS_TV |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | #import <FBSDKShareKit/FBSDKSharingContent.h> |
| | | #import "FBSDKSharingContent.h" |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | | /** |
| | | The common interface for sharing buttons. |
| | | |
| | | - See:FBSDKSendButton |
| | | @see FBSDKSendButton |
| | | |
| | | - See:FBSDKShareButton |
| | | @see FBSDKShareButton |
| | | */ |
| | | NS_SWIFT_NAME(SharingButton) |
| | | @protocol FBSDKSharingButton <NSObject> |
| | | |
| | | /** |
| | | The content to be shared. |
| | | */ |
| | | @property (nonatomic, copy) id<FBSDKSharingContent> shareContent; |
| | | @property (nonatomic, copy, nullable) id<FBSDKSharingContent> shareContent; |
| | | |
| | | @end |
| | | |
| | | NS_ASSUME_NONNULL_END |
| | | |
| | | #endif |