So I have a UIView that has been setup, and in each touch event handler I have an NSLog fire off a message to the console.
- (void) touchesBegan:(NSSSet*)touches withEvent:(UIEvent*)event {
NSLog(@"touchesBegan");
}
And that pretty much works as expected. But once I implement initWithCoder (even blank)
- (id)initWithCoder:(NSCoder*)coder {
return self;
}
I no longer receive the message to my console (or can hit breakpoints obviously).
This is my first app so I'm probably missing something dumb, but I've looked through various example apps and I don't appear to be missing any code that would re-enable touch events.