xcode 未在此范围中声明OFHighScoreService

sg2wtvxw  于 2022-12-24  发布在  其他
关注(0)|答案(1)|浏览(98)

我已经集成了OpenFeint,当我的应用启动时,我会编译并启动它。按照OF网站的说明:
1.从开发人员门户网站向您的应用添加排行榜。
1.注意新排行榜的唯一标识符。

In your application, submit the player’s score like this

    [OFHighScoreService setHighScore: scoreGoesHere forLeaderboard:@"leaderboard_id_string" onSuccess:OFDelegate() onFailure:OFDelegate()];

当我称之为:

[OFHighScoreService setHighScore:scores forLeaderboard:@"112033" onSuccess:OFDelegate() onFailure:OFDelegate()];

我得到一个错误:未在此范围中声明"OFHighScoreService"。我不确定该怎么做-我尝试导入OFHighScore. h,但没有成功。是否需要添加highscore委托?

az31mfrm

az31mfrm1#

Doh.不得不匆忙地包括ofhighscoreserviceidohh a刚刚看到了OFHighScore。

相关问题