2011-05-16 81 views

回答

1

我使用此代碼在cocos2d中呈現GKLeaderboard。

GKLeaderboardViewController *leaderboardController = [[GKLeaderboardViewController alloc] init]; 

    UIViewController *container = [[UIViewController alloc] init]; 
    [container setView:[[CCDirector sharedDirector] openGLView]]; 
    [container setModalTransitionStyle: UIModalTransitionStyleCoverVertical]; 

    leaderboardController.leaderboardDelegate = container; 

    [container presentModalViewController: leaderboardController animated: YES]; 

這會做你想做的。不要忘記,當你完成它們時你需要釋放UI對象。

+0

感謝您的回答Bongeh,但它不是像普通的模態視圖顯示。我看不到所有的模態視圖和模態從右到左移動而不是從下到上。 – Rizki 2011-05-19 03:26:01

+0

是你的風景遊戲? – Bongeh 2011-05-19 08:06:35

+0

我的遊戲使用所有方向。景觀和potrait。 – Rizki 2011-05-27 06:58:23