Hello Experts!
static Empire* SharedScore;
+(Empire*) share
{
NSAssert(SharedScore !=nil, @"score not yet initlized");
return SharedScore;
}
I have the above code. trying to create singleton. but its failing on the NSAssert line and saying "World not inilized" which means SharedScore=null?Could i please get help solving this?