Skip to content

Question about how can I change tabs programmatically #763

@ITzombietux

Description

@ITzombietux
@objc func refresh() {
        bottomRefreshControl.endRefreshing()
        
        let nextVC = self.storyboard?.instantiateViewController(withIdentifier: "MainViewController") as! MainViewController

        nextVC.moveToViewController(at: nextVC.currentIndex + 2)

        let destinationNV = self.storyboard?.instantiateViewController(withIdentifier: "MainNavVC") as! UINavigationController
        destinationNV.pushViewController(nextVC, animated: false)

        self.present(destinationNV, animated: true, completion: nil)
    }

The code above will move to the next tab when bottomRefreshControl is called on the tab.
But the code above always goes to the first tab.

nextVC.moveToViewController(at: nextVC.currentIndex + 2)

The code above will not run. How can I solve this problem?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions