- iOS 教程
- iOS - 首页
- iOS - 入门
- iOS - 环境设置
- iOS - Objective-C 基础
- iOS - 第一个 iPhone 应用程序
- iOS - 动作和出口
- iOS - 代理
- iOS - UI 元素
- iOS - 加速度计
- iOS - 通用应用程序
- iOS - 相机管理
- iOS - 位置处理
- iOS - SQLite 数据库
- iOS - 发送电子邮件
- iOS - 音频和视频
- iOS - 文件处理
- iOS - 访问地图
- iOS - 应用内购买
- iOS - iAd 集成
- iOS - GameKit
- iOS - 故事板
- iOS - 自动布局
- iOS - Twitter 和 Facebook
- iOS - 内存管理
- iOS - 应用程序调试
- iOS 有用资源
- iOS - 快速指南
- iOS - 有用资源
- iOS - 讨论
iOS - GameKit
Gamekit 是一个框架,它为 iOS 应用程序提供排行榜、成就等功能。在本教程中,我们将解释添加排行榜和更新分数的步骤。
涉及的步骤
步骤 1 - 在 iTunes Connect 中,确保您拥有一个唯一的 App ID,并在我们创建应用程序时,使用bundle ID 和代码签名在 Xcode 中更新,并使用相应的配置文件。
步骤 2 - 创建一个新的应用程序并更新应用程序信息。您可以在 apple-add new apps 文档中了解更多相关信息。
步骤 3 - 在应用程序页面上的管理 Game Center 中设置排行榜,添加一个排行榜,并提供排行榜 ID 和分数类型。这里我们使用 tutorialsPoint 作为排行榜 ID。
步骤 4 - 接下来的步骤与处理代码和为我们的应用程序创建 UI 相关。
步骤 5 - 创建一个单视图应用程序,并输入在iTunes Connect 中指定的bundle identifier。
步骤 6 - 更新 ViewController.xib,如下所示:
步骤 7 - 选择您的项目文件,然后选择targets,然后添加GameKit.framework。
步骤 8 - 为我们添加的按钮创建IBActions。
步骤 9 - 按如下方式更新ViewController.h 文件:
#import <UIKit/UIKit.h> #import <GameKit/GameKit.h> @interface ViewController : UIViewController <GKLeaderboardViewControllerDelegate> -(IBAction)updateScore:(id)sender; -(IBAction)showLeaderBoard:(id)sender; @end
步骤 10 - 按如下方式更新ViewController.m:
#import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; if([GKLocalPlayer localPlayer].authenticated == NO) { [[GKLocalPlayer localPlayer] authenticateWithCompletionHandler:^(NSError *error) { NSLog(@"Error%@",error); }]; } } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } - (void) updateScore: (int64_t) score forLeaderboardID: (NSString*) category { GKScore *scoreObj = [[GKScore alloc] initWithCategory:category]; scoreObj.value = score; scoreObj.context = 0; [scoreObj reportScoreWithCompletionHandler:^(NSError *error) { // Completion code can be added here UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"Score Updated Succesfully" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles: nil]; [alert show]; }]; } -(IBAction)updateScore:(id)sender { [self updateScore:200 forLeaderboardID:@"tutorialsPoint"]; } -(IBAction)showLeaderBoard:(id)sender { GKLeaderboardViewController *leaderboardViewController = [[GKLeaderboardViewController alloc] init]; leaderboardViewController.leaderboardDelegate = self; [self presentModalViewController: leaderboardViewController animated:YES]; } #pragma mark - Gamekit delegates - (void)leaderboardViewControllerDidFinish: (GKLeaderboardViewController *)viewController { [self dismissModalViewControllerAnimated:YES]; } @end
输出
当我们运行应用程序时,我们将获得以下输出:
当我们点击“显示排行榜”时,我们将看到类似于以下内容的屏幕:
当我们点击“更新分数”时,分数将更新到我们的排行榜,我们还将收到如下所示的警报:
广告