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