Typically, my event handling occurs in the UIViewController, so i used the following line of code:
[self.navigationController pushViewController:viewController animated:YES];
However, now my event handler is in the UIView.
specifically, i'm using - (void) touchesEnded:(NSSet*)touches withEvent:(UIEvent*)event
So from inside my touchesEnded delegate, how do i push a UIViewController onto a UINavigationController from a UIView that is a subview of the UIViewController mentioned.