forked from organicmaps/organicmaps-tmp
Created an extension for monospaced font
Signed-off-by: Pavel Petrenko <remedy7789@gmail.com>
This commit is contained in:
parent
94eb73f913
commit
3df07d1628
2 changed files with 22 additions and 0 deletions
18
iphone/Maps/Core/Theme/Extensions/UIFont+monospaced.swift
Normal file
18
iphone/Maps/Core/Theme/Extensions/UIFont+monospaced.swift
Normal file
|
@ -0,0 +1,18 @@
|
|||
import UIKit
|
||||
|
||||
extension UIFont {
|
||||
|
||||
/// Creates a UIFont object with monospaced numbers keeping other font descriptors like size and weight
|
||||
@objc var monospaced: UIFont {
|
||||
let attributes: [UIFontDescriptor.AttributeName: Any] = [
|
||||
.featureSettings: [
|
||||
[
|
||||
UIFontDescriptor.FeatureKey.featureIdentifier: kNumberSpacingType,
|
||||
UIFontDescriptor.FeatureKey.typeIdentifier: kMonospacedNumbersSelector
|
||||
]
|
||||
]
|
||||
]
|
||||
let monospacedNumbersFontDescriptor = fontDescriptor.addingAttributes(attributes)
|
||||
return UIFont(descriptor: monospacedNumbersFontDescriptor, size: pointSize)
|
||||
}
|
||||
}
|
|
@ -7,6 +7,7 @@
|
|||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
039371B62C5B68CD00708377 /* UIFont+monospaced.swift in Sources */ = {isa = PBXBuildFile; fileRef = 039371B52C5B68CD00708377 /* UIFont+monospaced.swift */; };
|
||||
1DFA2F6A20D3B57400FB2C66 /* UIColor+PartnerColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DFA2F6920D3B57400FB2C66 /* UIColor+PartnerColor.m */; };
|
||||
3304306D21D4EAFB00317CA3 /* SearchCategoryCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3304306C21D4EAFB00317CA3 /* SearchCategoryCell.swift */; };
|
||||
33046832219C57180041F3A8 /* CategorySettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33046831219C57180041F3A8 /* CategorySettingsViewController.swift */; };
|
||||
|
@ -738,6 +739,7 @@
|
|||
/* End PBXCopyFilesBuildPhase section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
039371B52C5B68CD00708377 /* UIFont+monospaced.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIFont+monospaced.swift"; sourceTree = "<group>"; };
|
||||
1D3623240D0F684500981E51 /* MapsAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MapsAppDelegate.h; sourceTree = "<group>"; };
|
||||
1D3623250D0F684500981E51 /* MapsAppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = MapsAppDelegate.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
|
||||
1DFA2F6820D3B52F00FB2C66 /* UIColor+PartnerColor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIColor+PartnerColor.h"; sourceTree = "<group>"; };
|
||||
|
@ -2754,6 +2756,7 @@
|
|||
993DF0D223F6BDB000AC231A /* UIColor+rgba.swift */,
|
||||
AC79C8912A65AB9500594C24 /* UIColor+hexString.swift */,
|
||||
993DF0D323F6BDB000AC231A /* UIColor+image.swift */,
|
||||
039371B52C5B68CD00708377 /* UIFont+monospaced.swift */,
|
||||
);
|
||||
path = Extensions;
|
||||
sourceTree = "<group>";
|
||||
|
@ -4588,6 +4591,7 @@
|
|||
993DF10523F6BDB100AC231A /* UINavigationItem+styleName.swift in Sources */,
|
||||
9977E69C247BFB510073780C /* SearchTextField.swift in Sources */,
|
||||
4726254921C27D4B00C7BAAD /* PlacePageDescriptionViewController.swift in Sources */,
|
||||
039371B62C5B68CD00708377 /* UIFont+monospaced.swift in Sources */,
|
||||
447DB4BC2BA78282000DF4C2 /* MWMOsmReauthAlert.mm in Sources */,
|
||||
340475711E081A4600C92850 /* MWMSettings.mm in Sources */,
|
||||
33046832219C57180041F3A8 /* CategorySettingsViewController.swift in Sources */,
|
||||
|
|
Loading…
Add table
Reference in a new issue