본문 바로가기

iOS/Swift

[iOS UIKit in Swift 4] UITabBarController 사용하기 (Display tab with UITabBarController)

UITabBarController 사용하기

간단한 UITabBarController를 만들어 보았습니다.

UITabBarController에 setViewControllers를 사용하여 UIViewController를 넣어주면 UIViewController의 개수만큼 탭이 만들어지고 각 UIViewController에서 UITabBarItem을 생성해주면 해당 내용으로 이미지와 텍스트가 노출되게 됩니다.

UITabBarItem은 시스템에서 제공하는것을 사용하는 방법과 커스텀으로 텍스트와 이미지를 만드는 방법이 있습니다.


Tip) 

UIViewController를 가지고 있는 Array를 map하여 UINavigationController의 rootViewController로 생성해주면 탭마다 UINavigationController를 쉽게 생성할 수 있습니다.

-> setViewControllers(tabs.map { UINavigationController(rootViewController: $0) }, animated: false)


아래 이미지와 소스코드를 비교해보시면 좀 더 이해하기 편합니다.

궁금하신점은 댓글로 달아주세요.


해피코딩 :)


Preview


Source


Github

https://github.com/calmone/iOS-UIKit-component


Reference