When I try to call a function in a +(void)
function it is not working.
example:
+(void) publicfunction {
[self otherFunction];
}
-(void) otherFunction{
self.scene.view.pause = YES
}
but I can't call "otherFunction
" inside of +(void)publicFunction
.