본문 바로가기
iOS - 실무관련/iOS

Tabbar 관련 변경

by print_soo 2022. 4. 16.
폰트변경

AppDelegate - didFinishLaunchingWithOptions 에서 폰트 변경 코드를 입력한다.

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        
        // 탭바 폰트 설정
        let appearance = UITabBarItem.appearance()
        let attributes = [NSAttributedString.Key.font:UIFont(name: "폰트 이름", size: 폰트사이즈)]
        appearance.setTitleTextAttributes(attributes as [NSAttributedString.Key : Any], for: .normal)
    }

 

아이콘 변경

아이콘의 size는 75pixel로 변경하여 만들어준다. 

1. 이미지 사이즈 변경 - https://www.iloveimg.com/ko/resize-image/resize-jpg#resize-options,pixels

2. 1x 2x 3x 이미지 생성 - https://appicon.co/#image-sets

'iOS - 실무관련 > iOS' 카테고리의 다른 글

시작하는 Storyboard 변경하기  (0) 2022.04.17
Multi Thread  (0) 2022.04.16
UI component  (0) 2022.03.28
Info.plist  (0) 2022.03.28
App Project  (0) 2022.03.28