lpw
2024-07-22 2a54d46accc194e2f3a076706c3f06e9ffd84d15
commit | author | age
dcdc07 1 //
W 2 //  GHWSDKFBShareLinkContent.h
3 //  GHWSdkUI
4 //
5 //  Created by wuyx on 15/6/15.
6 //  Copyright (c) 2015年 GHW-T-01. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
2a54d4 10 #import <WASdkIntf/WASharingContent.h>
dcdc07 11 /*!
W 12  @discussion WAFBShareLinkContent
13  - - -
14  */
15 @interface WAShareLinkContent : NSObject<WASharingContent>
16 /*!
17  @abstract The description of the link.
18  @discussion If not specified, this field is automatically populated by information scraped from the contentURL,
19  typically the title of the page.  This value may be discarded for specially handled links (ex: iTunes URLs).
20  @return The description of the link
21  */
22 @property (nonatomic, copy) NSString *contentDescription;
23
24 /*!
25  @abstract The title to display for this link.
26  @discussion This value may be discarded for specially handled links (ex: iTunes URLs).
27  @return The link title
28  */
29 @property (nonatomic, copy) NSString *contentTitle;
30
31 /*!
32  @abstract The URL of a picture to attach to this content.
33  @return The network URL of an image
34  */
35 @property (nonatomic, copy) NSURL *imageURL;
36 @end