设置 OpenFeint 自定义开始选项卡(iPhone 应用程序)

发布于 2024-08-02 07:53:34 字数 147 浏览 5 评论 0原文

我目前正在为 iPhone 应用程序设置 OpenFeint。默认情况下,加载的第一个选项卡是“Friends”(选项卡视图列表中的第三个选项卡),但我想自定义它以加载我们应用程序的主选项卡(列表中的第一个选项卡)。

有人知道如何做到这一点吗?任何帮助将不胜感激。

I'm currently setting up OpenFeint for an iPhone application. By default, the first tab that loads is "Friends" (the third tab in the tab view list) but I'd like to customize this to load the main tab for our application (the first tab in the list).

Anyone know how to accomplish this? Any help would be much appreciated.

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

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

发布评论

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

评论(1

梦里梦着梦中梦 2024-08-09 07:53:34

遵循所有启动逻辑后,我终于在 OpenFeint+Private.mm 中找到了这个函数:

+ (void)presentRootControllerWithTabbedDashboard
{
    UITabBarController* tabController = (UITabBarController*)OFControllerLoader::load(@"TabbedDashboard");
    if (![OpenFeint lastLoggedInUserHadFriendsOnBootup])
    {
        tabController.selectedIndex = 2;
    }
    [OpenFeint presentRootControllerWithModal:tabController];
}

正如预期的那样,将 .selectedIndex 更改为 0 效果非常好。

After following all the startup logic I finally found this function in OpenFeint+Private.mm:

+ (void)presentRootControllerWithTabbedDashboard
{
    UITabBarController* tabController = (UITabBarController*)OFControllerLoader::load(@"TabbedDashboard");
    if (![OpenFeint lastLoggedInUserHadFriendsOnBootup])
    {
        tabController.selectedIndex = 2;
    }
    [OpenFeint presentRootControllerWithModal:tabController];
}

As expected, changing .selectedIndex to 0 works perfect.

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