-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Open
Description
@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
Labels
No labels