如何在同一个 iOS 应用程序中独立使用 OpenFeint 和 Facebook?

发布于 2024-09-27 01:31:30 字数 192 浏览 4 评论 0原文

我正在开发一个 iOS 应用程序,其中包含对 OpenFeint 的支持。 OpenFeint 包括对 Facebook 的支持,因此如果用户登录 OpenFeint,他/她就可以在 Facebook 上发帖。如果用户选择登录 OpenFeint,我还希望允许用户在 Facebook 上发帖。有办法做到这一点吗?如果是这样,怎么办?

I'm developing an iOS app that includes support for OpenFeint. OpenFeint includes support for Facebook, so if the user logs in to OpenFeint, s/he can post to Facebook. I also want to allow the user to post to Facebook if s/he chooses not to login to OpenFeint. Is there a way to do this? If so, how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

放手` 2024-10-04 01:31:30

在标头中导入 FBConnect.h 文件,然后尝试以下代码:

Facebook *facebook = [[Facebook alloc] init];
[facebook authorize:@"YOUR_KEY_HERE" permissions:nil delegate:self];

只要您使用的 OpenFeint 版本具有最新版本的 FBConnect SDK,您就可以开始使用了!

Import the FBConnect.h file in a header, and try the following code:

Facebook *facebook = [[Facebook alloc] init];
[facebook authorize:@"YOUR_KEY_HERE" permissions:nil delegate:self];

As long as the version of OpenFeint you're using has the latest version of the FBConnect SDK, you should be good to go!

三月梨花 2024-10-04 01:31:30

当然,有一个 Facebook iOS SDK

Sure, there is a Facebook iOS SDK.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文