commit | author | age
|
d1f6ab
|
1 |
// |
H |
2 |
// WAFBShareContent.h |
|
3 |
// WASdkIntfUI |
|
4 |
// |
|
5 |
// Created by wuyx on 16/3/15. |
|
6 |
// Copyright © 2016年 GHW-T-01. All rights reserved. |
|
7 |
// |
|
8 |
|
|
9 |
|
|
10 |
#import <Foundation/Foundation.h> |
|
11 |
|
|
12 |
@protocol WASharingContent |
|
13 |
|
|
14 |
/*! |
|
15 |
@abstract URL for the content being shared. |
|
16 |
@discussion This URL will be checked for all link meta tags for linking in platform specific ways. See documentation |
|
17 |
for App Links (https://developers.facebook.com/docs/applinks/) |
|
18 |
@return URL representation of the content link |
|
19 |
*/ |
|
20 |
@property (nonatomic, strong) NSURL *contentURL; |
|
21 |
|
|
22 |
/*! |
|
23 |
@abstract List of IDs for taggable people to tag with this content. |
|
24 |
@description See documentation for Taggable Friends |
|
25 |
(https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) |
|
26 |
@return Array of IDs for people to tag (NSString) |
|
27 |
*/ |
|
28 |
@property (nonatomic, strong) NSArray *peopleIDs; |
|
29 |
|
|
30 |
/*! |
|
31 |
@abstract The ID for a place to tag with this content. |
|
32 |
@return The ID for the place to tag |
|
33 |
*/ |
|
34 |
@property (nonatomic, strong) NSString *placeID; |
|
35 |
|
|
36 |
/*! |
|
37 |
@abstract A value to be added to the referrer URL when a person follows a link from this shared content on feed. |
|
38 |
@return The ref for the content. |
|
39 |
*/ |
|
40 |
@property (nonatomic, strong) NSString *ref; |
|
41 |
|
|
42 |
@end |
|
43 |
|