lpw
2021-04-20 b19a78b27247f5f0761c35b5b3e8a41876eabb05
commit | author | age
bad748 1 // Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
W 2 //
3 // You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
4 // copy, modify, and distribute this software in source code or binary form for use
5 // in connection with the web services and APIs provided by Facebook.
6 //
7 // As with any software that integrates with the Facebook platform, your use of
8 // this software is subject to the Facebook Developer Principles and Policies
9 // [http://developers.facebook.com/policy/]. This copyright notice shall be
10 // included in all copies or substantial portions of the software.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
14 // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
15 // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
16 // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
17 // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18
49b883 19 #import "TargetConditionals.h"
L 20
21 #if !TARGET_OS_TV
22
bad748 23 #import <Foundation/Foundation.h>
W 24
49b883 25 #import "FBSDKShareConstants.h"
L 26 #import "FBSDKSharing.h"
bad748 27
e81c27 28 NS_ASSUME_NONNULL_BEGIN
H 29
9febd9 30 /**
13e53a 31  A dialog for sharing content through Messenger.
H 32
33  SUPPORTED SHARE TYPES
34  - FBSDKShareLinkContent
35
36  UNSUPPORTED SHARE TYPES (DEPRECATED AUGUST 2018)
37  - FBSDKShareOpenGraphContent
38  - FBSDKSharePhotoContent
39  - FBSDKShareVideoContent
49b883 40  - FBSDKShareMessengerOpenGraphMusicTemplateContent
L 41  - FBSDKShareMessengerMediaTemplateContent
42  - FBSDKShareMessengerGenericTemplateContent
13e53a 43  - Any other types that are not one of the four supported types listed above
bad748 44  */
e81c27 45 NS_SWIFT_NAME(MessageDialog)
bad748 46 @interface FBSDKMessageDialog : NSObject <FBSDKSharingDialog>
e81c27 47
H 48 /**
49  Convenience method to return a Message Share Dialog with content and a delegate.
50  @param content The content to be shared.
51  @param delegate The receiver's delegate.
52  */
53 + (instancetype)dialogWithContent:(id<FBSDKSharingContent>)content
54                          delegate:(nullable id<FBSDKSharingDelegate>)delegate
55 NS_SWIFT_NAME(init(content:delegate:));
bad748 56
9febd9 57 /**
13e53a 58  Convenience method to show a Message Share Dialog with content and a delegate.
H 59  @param content The content to be shared.
60  @param delegate The receiver's delegate.
bad748 61  */
e81c27 62 + (instancetype)showWithContent:(id<FBSDKSharingContent>)content
H 63                        delegate:(nullable id<FBSDKSharingDelegate>)delegate
64 NS_SWIFT_UNAVAILABLE("Use init(content:delegate:).show() instead");
bad748 65
W 66 @end
e81c27 67
H 68 NS_ASSUME_NONNULL_END
49b883 69
L 70 #endif