Hide NavigationBar when scrolling tableView in CollectionView?

前端 未结 6 1594
一整个雨季
一整个雨季 2020-12-05 11:47

I have collectionViewController and collectionViewCell include TableView.CollectionView is horizontal layout.I want hide navigationbar when scroll the tableView. Is there an

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-05 12:30

    Since iOS 8 you can just use

    self.navigationController?.hidesBarsOnSwipe = true
    

    This requires of course that your ViewController is embedded in a NavigationController. All child VC of the NavigationController will inherit this behaviour, so you might want to enable/disable it in viewWillAppear. You can also set the respective flags on the navigation controller in the storyboard.

提交回复
热议问题