lipengwei
2019-09-26 88188ea7992a90e66db694e9fc1b304a59608044
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// 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 <Foundation/Foundation.h>
 
#import <FBSDKShareKit/FBSDKShareMessengerActionButton.h>
#import <FBSDKShareKit/FBSDKSharingContent.h>
 
NS_ASSUME_NONNULL_BEGIN
 
DEPRECATED_FOR_MESSENGER
typedef NS_ENUM(NSUInteger, FBSDKShareMessengerMediaTemplateMediaType) {
  FBSDKShareMessengerMediaTemplateMediaTypeImage = 0,
  FBSDKShareMessengerMediaTemplateMediaTypeVideo
} NS_SWIFT_NAME(ShareMessengerMediaTemplateMediaType);
 
/**
 A model for sharing media template content. See
 https://developers.facebook.com/docs/messenger-platform/send-messages/template/media for details.
 */
NS_SWIFT_NAME(ShareMessengerMediaTemplateContent)
DEPRECATED_FOR_MESSENGER
@interface FBSDKShareMessengerMediaTemplateContent : NSObject <FBSDKSharingContent>
 
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;
 
/**
 The media type (image or video) for this content. This must match the media type specified in the
 attachmentID/mediaURL to avoid an error when sharing. Defaults to image.
 */
@property (nonatomic, assign) FBSDKShareMessengerMediaTemplateMediaType mediaType;
 
/**
 The attachmentID of the item to share. Optional, but either attachmentID or mediaURL must be specified.
 */
@property (nonatomic, copy, readonly, nullable) NSString *attachmentID;
 
/**
 The Facebook url for this piece of media. External urls will not work; this must be a Facebook url.
 See https://developers.facebook.com/docs/messenger-platform/send-messages/template/media for details.
 Optional, but either attachmentID or mediaURL must be specified.
 */
@property (nonatomic, copy, readonly, nullable) NSURL *mediaURL;
 
/**
 This specifies what action button to show below the media. Optional.
 */
@property (nonatomic, copy, nullable) id<FBSDKShareMessengerActionButton> button;
 
/**
 Custom initializer to create media template share with attachment id.
 */
- (instancetype)initWithAttachmentID:(NSString *)attachmentID;
 
/**
 Custom initializer to create media template share with media url. This must be a Facebook url
 and cannot be an external url.
 */
- (instancetype)initWithMediaURL:(NSURL *)mediaURL;
 
@end
 
NS_ASSUME_NONNULL_END