didBeginContact:(SKPhysicsContact *)contact not invoked
问题 I have created SKScene inherited class. Problem is that on contact of physics body method - (void)didBeginContact:(SKPhysicsContact *)contact is not invoked solution may be simple but as beginner with sprite kit i am stuck with this. Below is the code #import "MyScene.h" @interface MyScene () @property BOOL contentCreated; @end @implementation MyScene - (id)initWithSize:(CGSize)size { self = [super initWithSize:size]; if (self) { self.physicsWorld.contactDelegate = self; self.physicsBody =