iPhone App doesn't pick up Touch events, after replacing one view with another
- by Andre
Hi,
Any idea why after replacing one UIView with another (with the same Touch event logic), the 2nd one won't pick up any touch events?
I'm replacing them using:
[currentView removeFromSuperview];
NewView *newView = [[NewView alloc] init];
[window addSubview:newView];
Thank you all for your help :)