+ (ClassType*)sharedInstance{

      static ClassType *instance;

static dispatch_once_t predicate;

dispatch_once(&predicate, ^{

instance = [[ClassType alloc] init];

});

return instance;

}




Posted by tenn
,

http://www.objectivec-iphone.com/introduction/const/define-const.html

Posted by tenn
,



property 선언을 메소드 선언 뒤에서 하면 안된다...

Posted by tenn
,