문제 상황TabBar의 배경색을 white로 주었는데도 비치는 문제해결 과정tabBar.isTranslucent 설정을 false로 해주면 된다isTranslucent : TabBar의 배경이 반투명한지 여부를 나타내는 불 값 // tabBarItem 설정 private func setTabBarItem(){ homeVC.tabBarItem = UITabBarItem(title: "HOME", image: UIImage(named: "tabBar_home"), tag: 0) styleVC.tabBarItem = UITabBarItem(title: "STYLE", image: UIImage(named: "tabBar_style"), tag: 1) shopVC..