为什么我会泄漏?

时间:2013-03-18 09:13:51

标签: ios objective-c xcode instruments gamekit

我有一个只包含此内容的应用:

- (void)viewDidLoad
{
    [super viewDidLoad];

    //Authenticate Local GameCenter player
    [[GKLocalPlayer localPlayer] authenticateWithCompletionHandler:^(NSError *error)
     {
         [GKTurnBasedMatch loadMatchesWithCompletionHandler:^(NSArray *matches, NSError *error)
          {

          }];
     }];
}

马上,我得到了大量的泄漏。难道我做错了什么?我使用ARC。

enter image description here

1 个答案:

答案 0 :(得分:4)

loadMatchesWithCompletionHandler: GKTurnBasedMatch方法中的泄漏是iOS 6.0.1中的一个已知问题,which has been fixed in iOS 6.1

P.S。在iOS 6中不推荐使用authenticateWithCompletionHandler:方法,但它不对泄漏负责。