Format
Format copied to clipboard
NSNumber' is not convertible to 'CLLocationDistance'
Hello, i have an issue after install: in this function,
open func format(_ number: NSNumber, formatter: NumberFormatterCustomLocaleAvailable, locale: Locale) -> String
let distance = number as CLLocationDistance
NSNumber' is not convertible to 'CLLocationDistance' (aka 'Double'); did you mean to use 'as!' to force downcast?
xCode Version 9.3.1 (9E501) platform :ios, '10.0' swift_version = "4.0"
Force downcast is a bad practice, should prefer if let instead ...
Force downcast is a bad practice, should prefer if let instead ...
so??