iOS - GameKit


簡介

GameKit是 iOS 應用程式框架,提供了領先及更多功能。在本教學中,我們將解釋領先板上及更新分數步驟。

 

涉及的步驟

1. 在iTunes連線,確保您擁有一個獨特的應用程式ID和相應的組態檔案綑綁ID和程式碼簽名,在Xcode當我們建立應用程式更新。

2. 建立一個新的應用和更新應用程式的資訊。可以知道更多關於這個蘋果新增新的應用程式文件。

3. 設定一個領先板上,在遊戲中心管理應用程式的頁面中新增一個排行榜,排行榜ID和分數型別。在這裡,我們給領先板上編號為 yiibaiID。

4. 接下來的步驟是關係到我們的應用程式處理程式碼和建立UI。

5. 建立一個單一的檢視應用程式並進入包識別符號指定的識別符號在iTunes連線。

6. 更新ViewController.xib,如下所示。

iOS Tutorial

7. 選擇專案檔案,然後選擇目標,新增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:@"tutorialsYiibai"];
}
-(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

輸出

現在,當我們執行程式時,我們會得到下面的輸出。

iOS Tutorial

當我們單擊“顯示領先者板上,我們會得到一個類似於下面的螢幕。

iOS Tutorial

當我們點選更新分數,比分將被更新到我們領先板上,我們會得到一個警告,如下圖所示。

iOS Tutorial