GithubHelp home page GithubHelp logo

Comments (11)

andreamazz avatar andreamazz commented on July 17, 2024

See #377 and #378

from amscrollingnavbar.

arashetm avatar arashetm commented on July 17, 2024

Didn't help me!
It doesn't work properly.
Actually I call the showNavbar method in the action of segmentValueChanged.

from amscrollingnavbar.

andreamazz avatar andreamazz commented on July 17, 2024

Hi @arashetm
I'm testing against the Demo project, attached the segment action like so:

  @IBAction func segmentChange() {
    if let navigationController = self.navigationController as? ScrollingNavigationController {
      navigationController.showNavbar(animated: true, duration: 0.2, scrollToTop: true)
    }
  }

and it seems to be working fine. Can you share a sample project showing the issue?

from amscrollingnavbar.

arashetm avatar arashetm commented on July 17, 2024

I figured out what's the problem!
If I want to scroll to the top without changing segment it works like charm, but if I want to update my table view data source alongside scrolling to the top it doesn't work properly.
Here is my code:

@IBAction func segmentValueChanged(_ sender: UISegmentedControl) {
    _ = self.scrollViewShouldScrollToTop(self.archiveTableView)
    self.setBannersFrame()        //setting table header view
    // change table view's data based on the selected segment
    self.reloadArchiveTableView() // reloading table view
}

I found a hacky slution for this::

@IBAction func segmentValueChanged(_ sender: UISegmentedControl) {
    _ = self.scrollViewShouldScrollToTop(self.archiveTableView)
    self.setBannersFrame()        //setting table header view
    // change table view's data based on the selected segment
    DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
        self.reloadArchiveTableView() // reloading table view
    }
}

Maybe you need to add completion handler for showNavbar method.

from amscrollingnavbar.

andreamazz avatar andreamazz commented on July 17, 2024

Sounds good, checkout the latest master commit for the completion handler in showNavbar

from amscrollingnavbar.

arashetm avatar arashetm commented on July 17, 2024

It didn't work ...

from amscrollingnavbar.

andreamazz avatar andreamazz commented on July 17, 2024

I'm afraid it's still triggered too early, before UIKit rearranges the table

from amscrollingnavbar.

arashetm avatar arashetm commented on July 17, 2024

Do you have any suggestions?
Reloading should start exactly right after scroll did end scrolling, could we use scrollViewDidEndScrollingAnimation?
I need to achieve this.

from amscrollingnavbar.

andreamazz avatar andreamazz commented on July 17, 2024

Checkout the updated demo in master, the tableview now scrolls to top and updates the data source, and it seems to be working. Maybe it helps, let me know
b280a88#diff-42fa19733453bd36493bea5901519e2d

from amscrollingnavbar.

andreamazz avatar andreamazz commented on July 17, 2024

Any feedback?

from amscrollingnavbar.

uzman avatar uzman commented on July 17, 2024

you can fix it by calling collectionview's scrolltoItem method in the completion block:

    open func scrollViewShouldScrollToTop(_ scrollView: UIScrollView) -> Bool {
        if let navigationController = self.navigationController as? ScrollingNavigationController {
            navigationController.showNavbar(animated: false, duration: 0.1, scrollToTop: false) {
                DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {
                    self.collectionView.scrollToItem(at: IndexPath(row: 0, section: 0), at: .top, animated: true)
                }
            }
        }
        return true
    }

from amscrollingnavbar.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.