The home page of my app has UIButtons, btnIncome and btnExpense. Pressing on this buttons pushes IncomeVC and Expen
UIButtons
btnIncome
btnExpense
IncomeVC
Expen
extension UINavigationController { func getPreviousViewController() -> UIViewController? { let count = viewControllers.count guard count > 1 else { return nil } return viewControllers[count - 2] } }