//
|
// UIFontExtensions.swift
|
// SwifterSwift
|
//
|
// Created by Benjamin Meyer on 9/16/17.
|
// Copyright © 2017 SwifterSwift
|
//
|
|
#if canImport(UIKit)
|
import UIKit
|
|
// MARK: - Properties
|
public extension UIFont {
|
|
/// SwifterSwift: Font as bold font
|
var bold: UIFont {
|
return UIFont(descriptor: fontDescriptor.withSymbolicTraits(.traitBold)!, size: 0)
|
}
|
|
/// SwifterSwift: Font as italic font
|
var italic: UIFont {
|
return UIFont(descriptor: fontDescriptor.withSymbolicTraits(.traitItalic)!, size: 0)
|
}
|
|
/// SwifterSwift: Font as monospaced font
|
///
|
/// UIFont.preferredFont(forTextStyle: .body).monospaced
|
///
|
var monospaced: UIFont {
|
let settings = [[UIFontDescriptor.FeatureKey.featureIdentifier: kNumberSpacingType, UIFontDescriptor.FeatureKey.typeIdentifier: kMonospacedNumbersSelector]]
|
|
let attributes = [UIFontDescriptor.AttributeName.featureSettings: settings]
|
let newDescriptor = fontDescriptor.addingAttributes(attributes)
|
return UIFont(descriptor: newDescriptor, size: 0)
|
}
|
|
}
|
|
#endif
|