working on an ios app with objective c and using xcode. I have a class that inherits from another class that inherits from UIResponder and it contains a view. I have a touchesBegan within the sub class but the event only gets called when running the app in debug/dev mode. when i make a production/release build the touch event is not getting called.
// Basic viewcontroller protocol
@protocol SubViewController
- (void)viewDidAppear:(BOOL)animated;
- (void)viewDidDisappear:(BOOL)animated;
- (void)viewWillAppear:(BOOL)animated;
- (void)viewWillDisappear:(BOOL)animated;
- (void)viewDidLoad;
-(UIView *)view;
@end
@interface SubViewController : UIResponder<SubViewController> {
}
/////////////////////////////////////////////////////////////////////////////////
// A custom subview controller
//
@interface mySubViewController : SubViewController {
}
and within mysubviewcontroller class i have
- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
//some code and magic
}
Now as i said running this in debug is fine but the touch event is ignored in release. any tips, ideas or questions to help clarify this for you please say. thanks in advance
edit: i seen this in the doc "If you override this method without calling super (a common use pattern), you must also override the other methods for handling touch events, if only as stub (empy) implementations." so i stubbed in all the other touch events but no change on release build
UIViewController(which already inherits fromUIResponder)? I suspect your customUIRespondersubclass isn't added to the responder chain properly. – omz Jan 26 at 12:07UIViewControllerdocs. Basically, you'd need to overridenextResponderin the view that you're managing and your "view controller". The view would return the view controller and the view controller would return the view's superview. – omz Jan 26 at 12:19