当然可以。在iOS应用中,可以从任何页面进入到rootViewController页面。rootViewController是应用的主要入口,通常是一个UINavigationController或UITabBarController。要实现从任何页面进入rootViewController页面,可以使用以下方法:
self.navigationController?.popToRootViewController(animated: true)
self.navigationController?.setViewControllers([rootViewController], animated: true)
tabBarController?.selectedIndex = 0
无论使用哪种方法,都可以从任何页面进入到rootViewController页面。
领取专属 10元无门槛券
手把手带您无忧上云