| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // NSNumberFormatter.swift
- // Loop
- //
- // Created by Nate Racklyeft on 9/5/16.
- // Copyright © 2016 Nathan Racklyeft. All rights reserved.
- //
- import Foundation
- import HealthKit
- extension NumberFormatter {
- func string(from number: Double) -> String? {
- return string(from: NSNumber(value: number))
- }
- func string(from number: Double, unit: String, style: Formatter.UnitStyle = .medium) -> String? {
- guard let stringValue = string(from: number) else {
- return nil
- }
- let format: String
- switch style {
- case .long, .medium:
- format = LocalizedString(
- "quantity-and-unit-space",
- value: "%1$@ %2$@",
- comment: "Format string for combining localized numeric value and unit with a space. (1: numeric value)(2: unit)"
- )
- case .short:
- fallthrough
- @unknown default:
- format = LocalizedString(
- "quantity-and-unit-tight",
- value: "%1$@%2$@",
- comment: "Format string for combining localized numeric value and unit without spacing. (1: numeric value)(2: unit)"
- )
- }
- return String(
- format: format,
- stringValue,
- unit
- )
- }
- }
|