spm仓库支持,通用仓库
lpw
3 days ago 78c9bf9d1d61fed696f11aeeb29de4c96f9f86cb
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
//
//  GHWSDKFBShareLinkContent.h
//  GHWSdkUI
//
//  Created by wuyx on 15/6/15.
//  Copyright (c) 2015年 GHW-T-01. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import <WASdkIntf/WASharingContent.h>
/*!
 @discussion WAFBShareLinkContent
 - - -
 */
@interface WAShareLinkContent : NSObject<WASharingContent>
/*!
 @abstract The description of the link.
 @discussion If not specified, this field is automatically populated by information scraped from the contentURL,
 typically the title of the page.  This value may be discarded for specially handled links (ex: iTunes URLs).
 @return The description of the link
 */
@property (nonatomic, copy) NSString *contentDescription;
 
/*!
 @abstract The title to display for this link.
 @discussion This value may be discarded for specially handled links (ex: iTunes URLs).
 @return The link title
 */
@property (nonatomic, copy) NSString *contentTitle;
 
/*!
 @abstract The URL of a picture to attach to this content.
 @return The network URL of an image
 */
@property (nonatomic, copy) NSURL *imageURL;
@end