mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
19 lines
362 B
Swift
19 lines
362 B
Swift
//
|
|
// UIFontDescriptor+Bold.swift
|
|
// AltStore
|
|
//
|
|
// Created by Riley Testut on 10/16/23.
|
|
// Copyright © 2023 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
extension UIFontDescriptor
|
|
{
|
|
func bolded() -> UIFontDescriptor
|
|
{
|
|
guard let descriptor = self.withSymbolicTraits(.traitBold) else { return self }
|
|
return descriptor
|
|
}
|
|
}
|