2

我正在寻找一种将 OpenFeint 的仪表板视图直接打开到挑战视图的方法。有一条消息会启动仪表板,并且会在发送前显示质询:

[OpenFeint launchDashboard];

[OFChallengeService displaySendChallengeModal: @"challengeIDhere"
    challengeText: [NSString stringWithFormat: @ "my score is %d, can you beat it?", _score]
    challengeData: challengeData];

但我似乎无法找到一个允许用户查看即将到来的挑战。

顺便说一句,我正在使用 Cocos2d,所以如果有关于创建自定义 UI 以应对挑战的方便教程,我一定会很感激!

4

1 回答 1

3

尝试:

[OpenFeint launchDashboardWithChallengesPage];

顺便说一句,还有:

  • launchDashboardWithListLeaderboardsPage
  • launchDashboardWithAchievementsPage
  • launchDashboardWithFindFriendsPage
  • launchDashboardWithWhosPlayingPage
于 2011-05-18T04:21:39.910 回答