FBSDKAppInviteDialog 不工作
FBSDKAppInviteDialog is not working
我正在实施邀请朋友的应用程序
但它给我以下错误
旧方法已弃用
文档:https://developers.facebook.com/docs/reference/ios/current/class/FBSDKAppInviteDialog/
新方法:
+ (instancetype)
showFromViewController: (UIViewController *)viewController
withContent: (FBSDKAppInviteContent *)content
delegate: (id<FBSDKAppInviteDialogDelegate>)delegate;
声明于:FBSDKAppInviteDialog.h
showWithContent:delegate:
+ (instancetype)
showWithContent: (FBSDKAppInviteContent *)content
delegate: (id<FBSDKAppInviteDialogDelegate>)delegate
__attribute__((deprecated("use showFromViewController: withContent:delegate: instead")));
Declared In: FBSDKAppInviteDialog.h
Facebook 不再支持应用邀请,请参阅 here。
从 Facebook SDK 版本 4.28 及更高版本开始,将不再支持应用邀请。之前版本的SDK仍然可以接入App Invites,但是从2/6开始,将不再支持App Invites。
我正在实施邀请朋友的应用程序
但它给我以下错误
旧方法已弃用
文档:https://developers.facebook.com/docs/reference/ios/current/class/FBSDKAppInviteDialog/
新方法:
+ (instancetype)
showFromViewController: (UIViewController *)viewController
withContent: (FBSDKAppInviteContent *)content
delegate: (id<FBSDKAppInviteDialogDelegate>)delegate;
声明于:FBSDKAppInviteDialog.h
showWithContent:delegate:
+ (instancetype)
showWithContent: (FBSDKAppInviteContent *)content
delegate: (id<FBSDKAppInviteDialogDelegate>)delegate
__attribute__((deprecated("use showFromViewController: withContent:delegate: instead")));
Declared In: FBSDKAppInviteDialog.h
Facebook 不再支持应用邀请,请参阅 here。
从 Facebook SDK 版本 4.28 及更高版本开始,将不再支持应用邀请。之前版本的SDK仍然可以接入App Invites,但是从2/6开始,将不再支持App Invites。