레이블이 ton인 게시물을 표시합니다. 모든 게시물 표시
레이블이 ton인 게시물을 표시합니다. 모든 게시물 표시

2011년 8월 16일 화요일

[IPhone Dev] Objective C - Singleton

That's the one im using!

+ (GameManager *)sharedGameManager
{
    static GameManager *singletonClass = nil;
    
    if(singletonClass == nil)
    {
        @synchronized(self)
        {
            if(singletonClass == nil)
            {
                singletonClass = [[self alloc] init];
            }
        }
    }
    
    return singletonClass;
}

Mayday Timeattack - Free on Appstore