I love the swipe pack thats inherited from embedding your views in a UINavigationController
. Unfortunately i cannot seem to find a way to hide the NavigationBar
but still have the touch pan swipe back gesture
. I can write custom gestures but I prefer not to and to rely on the UINavigationController
back swipe gesture
instead.
if I uncheck it in the storyboard, the back swipe doesn't work
alternatively if I programmatically hide it, the same scenario.
- (void)viewDidLoad
{
[super viewDidLoad];
[self.navigationController setNavigationBarHidden:YES animated:NO]; // and animated:YES
}
Is there no way to hide the top NavigationBar
and still have the swipe?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…