Slide Hide navigation on IOS, slide show navigation, fish-like navigation effect

Source: Internet
Author: User

UITableView or Uicollectionview are inherited uiscrollview sliding, judging whether it is up or down using the Uiscrollview proxy method

Func scrollviewwillenddragging (_ scrollView: uiscrollview, withvelocity velocity: cgpoint , Targetcontentoffset: unsafemutablepointer<cgpoint>)

func scrollviewwillenddragging (_ Scrollview:uiscrollview, withVelocity Velocity:cgpoint, targetcontentoffset:unsafemutablepointer<cgpoint>) {Let pan = Scrollview.pangesturerecog            Nizer Let velocity = pan.velocity (in:scrollview). Y if velocity <-15 {//Slide up Self.navigationcontroller?. Setnavigationbarhidden (True, animated:true)//status bar color is black UIApplication.shared.statusBarStyle =. Defau                    Lt NotificationCenter.default.post (Name:NSNotification.Name (rawvalue:kupdatetitlefreamnote), Object:nil) } else if velocity > 15 {//Slide Self.navigationcontroller?. Setnavigationbarhidden (False, Animated:true)//status bar color is white UIApplication.shared.statusBarStyle =. Ligh Tcontent NotificationCenter.default.post (Name:NSNotification.Name (Rawvalue:kinupdatetitlefreamnote), object: Nil)}} 

Status bar color is black, navigation is hidden, slide navigation bar is displayed, status bar turns white

As for the layout of the control needs to change according to the state,

Slide Hide navigation on IOS, slide show navigation, fish-like navigation effect

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.