我有一个只包含此内容的应用:
- (void)viewDidLoad
{
[super viewDidLoad];
//Authenticate Local GameCenter player
[[GKLocalPlayer localPlayer] authenticateWithCompletionHandler:^(NSError *error)
{
[GKTurnBasedMatch loadMatchesWithCompletionHandler:^(NSArray *matches, NSError *error)
{
}];
}];
}
马上,我得到了大量的泄漏。难道我做错了什么?我使用ARC。
答案 0 :(得分:4)
loadMatchesWithCompletionHandler:
GKTurnBasedMatch
方法中的泄漏是iOS 6.0.1中的一个已知问题,which has been fixed in iOS 6.1。
P.S。在iOS 6中不推荐使用authenticateWithCompletionHandler:
方法,但它不对泄漏负责。