static GCHelper *sharedHelper =nil;
+ (GCHelper *) sharedInstance
{
@synchronized ([GCHelper class])
{
If (!shareHelper)
{
[[self alloc] init];
}
return nil;
}
I have it to run gamecenter but it gives me an error of "expression result unused" how do i fix this