-(id)init
{
if ((self = [super init]))
{
[self setupTitle];
self.touchEnabeled = YES;
}
return self;
}
-(void)ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
[[CCDirector sharedDirector]
replaceScene:[CCTransitionFade transitionWithDuration:1.0 scene:[GameScene node]]];
CCSprite *start = (CCSprite *)
[self getChildByTag:1]; [start stopAllActions];
start.visible = NO;
}
Cant Get self.touchEnabled = YES; working it gives an error ;
touchEnabled Not found on object type of 'TitleLayer'