标签: ios swift xcode uisearchbar uisearchcontroller
我在主页上有一个自定义的UISearchController。当用户导航到另一个屏幕时,我只想关闭UISearchController,如果它处于活动状态。有什么帮助吗?
UISearchController
if customSearchController.isActive { customSearchController.dismiss(animated: true) { doAlert() } } else { doAlert() }