현재 iPad에서 작업 중이며 Cocos2D를 사용 중입니다. 지금까지 Game Center를 다룰 때 기본보기로 테스트를 진행했습니다. 지금은 전체 화면 또는 PageSheet (이미지에 표시됨)를 사용하여 원하는대로 설정하려고합니다.GKAchievementViewController 전체 화면 (또는 PageSheet) 홀수 표시
내 질문은 상당히 간단합니다 (적어도 질문하는 경우). 왜 정확히 그것을하고 있습니까? 업적보기의 상단에 그 "나무"프레임에 액세스하는 방법을 알아낼 수 없습니다. 여기
내가 더 큰보기에 도착 (임의 물건 내가 노력 해왔다 포함) 사용 된 코드입니다.- (void)showAchievements:(id)sender
{
GKAchievementViewController *achievements = [[GKAchievementViewController alloc] init];
if (achievements != nil)
{
achievements.achievementDelegate = self;
tempVC = [[UIViewController alloc] init];
// tempVC.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
// tempVC.interfaceOrientation = [[UIDevice currentDevice] orientation];
[achievements shouldAutorotateToInterfaceOrientation:UIInterfaceOrientationLandscapeLeft];
[achievements shouldAutorotateToInterfaceOrientation:UIInterfaceOrientationLandscapeRight];
[tempVC shouldAutorotateToInterfaceOrientation:UIInterfaceOrientationLandscapeLeft];
[tempVC shouldAutorotateToInterfaceOrientation:UIInterfaceOrientationLandscapeRight];
// achievements.navigationController.modalPresentationStyle = UIModalPresentationPageSheet;
// tempVC.wantsFullScreenLayout = YES;
tempVC.modalPresentationStyle = UIModalPresentationPageSheet;
tempVC.view.superview.bounds = CGRectMake(0, 0, winSize.width, winSize.height);
// tempVC.view.superview
// tempVC.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
// achievements.wantsFullScreenLayout = YES;
achievements.modalPresentationStyle = UIModalPresentationPageSheet;
// achievements.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
achievements.navigationController.modalPresentationStyle = UIModalPresentationPageSheet;
// achievements. = CGRectMake(0, 0, winSize.width, winSize.height);
[[[CCDirector sharedDirector] openGLView] addSubview:tempVC.view];
[tempVC presentModalViewController:achievements animated:YES];
}
}
내 UI 킷에 대한 이해가 극히 제한적입니다. 나는 Cocos2D와 Box2D와 거의 다른 것을 사용하지 않는다. (어쨌든 지금까지). 제발, 당신이 제공 할 수있는 모든 도움을 많이 주시면 감사하겠습니다. 만약 당신이 단순히 이것이 어떻게 완료 될지를 보여줄 수 있다면 (내가 가지고있는 모든 정크 코드없이) 그것은 완벽 할 것입니다. 그냥 당신이 아니에요,
난 그냥 UIModalPresentationPageSheet이 작업을 수행하려고
나는이 질문 한 후 약 일주일 정도 매우 아픈 있고 난 뒤로 순전히을 주석으로되어 있습니다. 희망을 갖고 현상금이 나에게 대답을 줄 것이다 :) –