UITabBarController의 버튼 색상 변경
2777 단어 SwifttabbarController
소개
UITabBarController 버튼의 색상을 변경하고 싶습니다.
환경
Xcode 12.4
Swift 5.3.2
구현
탭 바 컨트롤러로 전환하기 전 화면에서 색상을 지정했습니다.
MenuViewController
override func viewDidLoad() {
UITabBar.appearance().tintColor = .red
UITabBar.appearance().unselectedItemTintColor = .darkGray
}
func next() {
let storyboard = UIStoryboard(name: "Next", bundle: nil)
let next = storyboard.instantiateViewController(identifier: "Next")
guard let tabBarCon = next as? UITabBarController else { return }
self.navigationController?.pushViewController(tabBarCon, animated: true)
}
결과
감상
앞으로도 여러 번 조사할 것 같은 내용이라고 생각했습니다.
참고 기사에 감사합니다.
참고 기사
Reference
이 문제에 관하여(UITabBarController의 버튼 색상 변경), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/_yoshitaka/items/df3d96cafb4184059992텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)