| 1234567891011121314151617181920212223 |
- //
- // NumberFormatter.swift
- // OmniBLE
- //
- // Copyright © 2017 Pete Schwamb. All rights reserved.
- //
- import Foundation
- extension NumberFormatter {
- func decibleString(from decibles: Int?) -> String? {
- if let decibles = decibles, let formatted = string(from: NSNumber(value: decibles)) {
- return String(format: LocalizedString("%@ dB", comment: "Unit format string for an RSSI value in decibles"), formatted)
- } else {
- return nil
- }
- }
-
- func string(from number: Double) -> String? {
- return string(from: NSNumber(value: number))
- }
- }
|