iOS
[iOS] 화면 이동 시 탭바(UITabBar) 숨기기
guswlsdk
2023. 5. 28. 09:18
반응형
A -> B로 이동할 때
A에 작성하자!
let vc = AViewController()
vc.hidesBottomBarWhenPushed = true
self.navigationController?.pushViewController(vc, animated: true)
반응형