如果用户在游戏中心视图出现时按下取消按钮,我有此代码可以转到我的 ViewController。
- (void)matchmakerViewControllerWasCancelled:
(GKMatchmakerViewController *)viewController{
[self dismissModalViewControllerAnimated:YES];
[Mytimer invalidate];
ViewController *Vc = [[ViewController alloc]init];
[self presentModalViewController:Vc animated:YES];
}
我的错在哪里?如果我按下取消,matchmakerViewController 会消失,但不会转到“Vc”。请帮忙。我该如何解决?