Wuyx
2017-01-17 afd70759b9bf1bd99c9a5f3578ce2c5474090340
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
19 #import <Foundation/Foundation.h>
20
21 #import <FBSDKShareKit/FBSDKSharingContent.h>
22
9febd9 23 /**
W 24   A model for status and link content to be shared.
bad748 25  */
W 26 @interface FBSDKShareLinkContent : NSObject <FBSDKSharingContent>
27
9febd9 28 /**
W 29   The description of the link.
30
31  If not specified, this field is automatically populated by information scraped from the contentURL,
bad748 32  typically the title of the page.  This value may be discarded for specially handled links (ex: iTunes URLs).
9febd9 33  - Returns: The description of the link
bad748 34  */
W 35 @property (nonatomic, copy) NSString *contentDescription;
36
9febd9 37 /**
W 38   The title to display for this link.
39
40  This value may be discarded for specially handled links (ex: iTunes URLs).
41  - Returns: The link title
bad748 42  */
W 43 @property (nonatomic, copy) NSString *contentTitle;
44
9febd9 45 /**
W 46   The URL of a picture to attach to this content.
47  - Returns: The network URL of an image
bad748 48  */
W 49 @property (nonatomic, copy) NSURL *imageURL;
50
9febd9 51 /**
W 52   Some quote text of the link.
53
54  If specified, the quote text will render with custom styling on top of the link.
55  - Returns: The quote text of a link
bad748 56  */
W 57 @property (nonatomic, copy) NSString *quote;
58
9febd9 59 /**
W 60   Compares the receiver to another link content.
61  - Parameter content: The other content
62  - Returns: YES if the receiver's values are equal to the other content's values; otherwise NO
bad748 63  */
W 64 - (BOOL)isEqualToShareLinkContent:(FBSDKShareLinkContent *)content;
65
66 @end