IOS Slide Hide Navigation bar-three ways

Source: Internet
Author: User

/** 1 Hide Navigation Bar-simple-*/
Self.navigationController.hidesBarsOnSwipe = YES;

/** 2 Hide navigation bar-do not slide away with TableView */
-(void) Scrollviewdidscroll: (Uiscrollview *) ScrollView {
ScrollView already have a drag gesture, get the ScrollView's drag gesture directly
Uipangesturerecognizer *pan = Scrollview.pangesturerecognizer;
Get to drag the speed >0 down drag <0 up drag
CGFloat velocity = [Pan velocityinview:scrollview].y;
if (velocity <-5) {
Drag up to hide the navigation bar
[Self.navigationcontroller Setnavigationbarhidden:yes Animated:yes];
}else if (Velocity > 5) {
Drag down to display the navigation bar
[Self.navigationcontroller Setnavigationbarhidden:no Animated:yes];
}else if (velocity = = 0) {
Stop dragging
//    }
//}

/** 3 hidden navigation bar-gesture disengagement (acceleration) disappears/appears */
-(void) scrollviewwillenddragging: (Uiscrollview *) ScrollView withvelocity: (cgpoint) Velocity targetcontentoffset :(inout Cgpoint *) Targetcontentoffset {
if (Velocity.y > 0.0) {
[Self.navigationcontroller Setnavigationbarhidden:yes Animated:yes];
} else if (Velocity.y < 0.0) {
[Self.navigationcontroller Setnavigationbarhidden:no Animated:yes];
//    }
//}

IOS Slide Hide Navigation bar-three ways

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.