Wuyx
2017-01-20 cb73c258ba8634a628dd72872a7bb741e9a35256
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 <FBSDKCoreKit/FBSDKCopying.h>
22
23 #import <FBSDKShareKit/FBSDKShareOpenGraphObject.h>
24 #import <FBSDKShareKit/FBSDKShareOpenGraphValueContainer.h>
25
9febd9 26 /**
W 27   An Open Graph Action for sharing.
28
29  The property keys MUST have namespaces specified on them, such as `og:image`.
bad748 30  */
W 31 @interface FBSDKShareOpenGraphAction : FBSDKShareOpenGraphValueContainer <FBSDKCopying, NSSecureCoding>
32
9febd9 33 /**
W 34   Convenience method to build a new action and set the object for the specified key.
35  - Parameter actionType: The action type of the receiver
36  - Parameter object: The Open Graph object represented by this action
37  - Parameter key: The key for the object
bad748 38  */
W 39 + (instancetype)actionWithType:(NSString *)actionType object:(FBSDKShareOpenGraphObject *)object key:(NSString *)key;
40
9febd9 41 /**
W 42   Convenience method to build a new action and set the object for the specified key.
43  - Parameter actionType: The action type of the receiver
44  - Parameter objectID: The ID of an existing Open Graph object
45  - Parameter key: The key for the object
bad748 46  */
W 47 + (instancetype)actionWithType:(NSString *)actionType objectID:(NSString *)objectID key:(NSString *)key;
48
9febd9 49 /**
W 50   Convenience method to build a new action and set the object for the specified key.
51  - Parameter actionType: The action type of the receiver
52  - Parameter objectURL: The URL to a page that defines the Open Graph object with meta tags
53  - Parameter key: The key for the object
bad748 54  */
W 55 + (instancetype)actionWithType:(NSString *)actionType objectURL:(NSURL *)objectURL key:(NSString *)key;
56
9febd9 57 /**
W 58   Gets the action type.
59  - Returns: The action type
bad748 60  */
W 61 @property (nonatomic, copy) NSString *actionType;
62
9febd9 63 /**
W 64   Compares the receiver to another Open Graph Action.
65  - Parameter action: The other action
66  - Returns: YES if the receiver's values are equal to the other action's values; otherwise NO
bad748 67  */
W 68 - (BOOL)isEqualToShareOpenGraphAction:(FBSDKShareOpenGraphAction *)action;
69
70 @end