hank
2017-09-20 f9fcfea80f10b97f4d303d3888c75d036068249f
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/FBSDKAppGroupContent.h>
22
23 @protocol FBSDKAppGroupAddDialogDelegate;
24
9febd9 25 /**
W 26
27 - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
bad748 28  */
9febd9 29 __attribute__ ((deprecated))
bad748 30 @interface FBSDKAppGroupAddDialog : NSObject
W 31
9febd9 32 /**
W 33
34 - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
bad748 35  */
W 36 + (instancetype)showWithContent:(FBSDKAppGroupContent *)content
9febd9 37                        delegate:(id<FBSDKAppGroupAddDialogDelegate>)delegate __attribute__ ((deprecated));
bad748 38
9febd9 39 /**
bad748 40
9febd9 41 - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
bad748 42  */
9febd9 43 @property (nonatomic, weak) id<FBSDKAppGroupAddDialogDelegate> delegate __attribute__ ((deprecated));
bad748 44
9febd9 45 /**
bad748 46
9febd9 47 - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
bad748 48  */
9febd9 49 @property (nonatomic, copy) FBSDKAppGroupContent *content __attribute__ ((deprecated));
bad748 50
9febd9 51 /**
W 52
53 - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
bad748 54  */
9febd9 55 - (BOOL)canShow __attribute__ ((deprecated));
W 56
57 /**
58
59 - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
60  */
61 - (BOOL)show __attribute__ ((deprecated));
62
63 /**
64
65 - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
66  */
67 - (BOOL)validateWithError:(NSError *__autoreleasing *)errorRef __attribute__ ((deprecated));
bad748 68
W 69 @end
70
9febd9 71 /**
W 72
73 - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
bad748 74  */
9febd9 75 __attribute__ ((deprecated))
bad748 76 @protocol FBSDKAppGroupAddDialogDelegate <NSObject>
W 77
9febd9 78 /**
bad748 79
9febd9 80 - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
bad748 81  */
9febd9 82 - (void)appGroupAddDialog:(FBSDKAppGroupAddDialog *)appGroupAddDialog didCompleteWithResults:(NSDictionary *)results __attribute__ ((deprecated));
bad748 83
9febd9 84 /**
W 85
86 - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
bad748 87  */
9febd9 88 - (void)appGroupAddDialog:(FBSDKAppGroupAddDialog *)appGroupAddDialog didFailWithError:(NSError *)error __attribute__ ((deprecated));
W 89
90 /**
91
92 - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
93  */
94 - (void)appGroupAddDialogDidCancel:(FBSDKAppGroupAddDialog *)appGroupAddDialog __attribute__ ((deprecated));
bad748 95
W 96 @end