【发布时间】:2011-05-01 11:14:33
【问题描述】:
我有密码
- (void)matchmakerViewController:(GKMatchmakerViewController *)viewController didFindMatch:(GKMatch *)match
{
[menuViewController dismissModalViewControllerAnimated:YES];
[GameKitWrapper getSingleton].match = match;
match.delegate = [GameKitWrapper getSingleton].remotePlayer;
[menuViewController presentModalViewController:avatarSelectionViewController
animated:YES];
}
但我有一个问题,即解雇有效,但不是现在。当我将dismissModalViewControllerAnimated:YES 更改为dismissModalViewControllerAnimated:NO 时,它起作用了,但看起来不太好。
感谢任何帮助。
【问题讨论】:
标签: iphone objective-c ios modalviewcontroller