VesselWheel

Swift Font 사용하기 본문

Xcode Study

Swift Font 사용하기

JasonYang 2024. 3. 19. 21:14

https://developer.apple.com/fonts/

 

Fonts - Apple Developer

Get the details, frameworks, and tools you need to use system fonts for Apple platforms in your apps.

developer.apple.com

apple에서 지원하는다양한 폰트가 맥북의 서체관리자(fontbook)에 내장되어 있다. 

xcode 내에서 맥북에 내장된 폰트를 사용하기 위해서는 

    lazy var timerCounterView: UILabel = {
        let label = UILabel()
        label.font = UIFont(name: "Arial Rounded MT Bold", size: 200)
        label.textColor = .systemYellow
        label.textAlignment = .center
        label.isHidden = true
        return label
    }()

UIFont의 name으로 폰트 이름을 적으면 손쉽게 적용할 수 있다. 

특히, San Francisco = SF 체는 WWDC2022에서 소개되었는데, 다양한 폰트를 제공한다. 

https://developer.apple.com/videos/play/wwdc2022/110381/

 

Meet the expanded San Francisco font family - WWDC22 - Videos - Apple Developer

Discover the latest additions to San Francisco – the system font for Apple platforms – and find out how they can provide more control and...

developer.apple.com

"Arial Rounded MT Bold"를 적용한 숫자 카운트