表达结果未用于游戏中心

时间:2011-11-18 21:02:12

标签: iphone expression game-center

    static GCHelper *sharedHelper =nil;
    + (GCHelper *) sharedInstance
    {
         @synchronized ([GCHelper class])
    {
            If (!shareHelper)
    {
            [[self alloc] init];
    }
       return nil;
    }

我有它运行gamecenter但是它给了我一个“表达结果未使用”的错误我如何解决这个问题

1 个答案:

答案 0 :(得分:3)

您实际上并未将[[self alloc] init]的结果分配给shareHelper,您几乎肯定会这样做。这个警告指出了你的错误。