Objectmapper: After updating to Xcode 9.3 and Swift 4.1 Float is not able to map the values

Created on 31 Mar 2018  路  20Comments  路  Source: tristanhimmelman/ObjectMapper

I just updated to Xcode 9.3 and Swift 4.1 and Float is not able to map the values, but when I changed Float to CGFloat it is working fine.

It is giving lots of compilation warnings also. PFA attached screenshot of warnings.

screen shot 2018-03-31 at 12 53 09 pm

Most helpful comment

I have the same problem.
The workaround that had less impact for me was to use a Custom Transform:

class CustomFloatTransform: TransformType {
    public typealias Object = Float
    public typealias JSON = NSNumber

    func transformFromJSON(_ value: Any?) -> Float? {
        if let number = value as? NSNumber {
            return number.floatValue
        }

        if let numberString = value as? String {
            return Float(numberString)
        }

        return nil
    }

    func transformToJSON(_ value: Float?) -> NSNumber? {
        if let float = value {
            return NSNumber(value: float)
        }
        return nil
    }
}

All 20 comments

As I see there was a discussion at swift.org about redeclaration warnings. And as I understood they were going to ask ObjectMapper's maintainers to fix this issue.

About Float it seems that for some reason NSNumber cannot be casted to Float. I got such error "Unable to bridge NSNumber to Float" and at this point I don't know what to do with it.

I got same issue on Swift 4.1 + Xcode 9.3. My workaround atm is to update our transformer to cast the object to NSNumber and get the .floatValue. There will be rounding issue, but it's not a problem at least for my project.

Does anyone have solution?

We're worried about these warnings: so far everything looks like its working, but since we use it to transfer data to a backend we do not manage, it is very hard for us to confirm everything still works as it used to. Any idea when the warnings will be fixed?

I am facing the same issue.
so I installed 9.2 with swift 4.0. Now it is working charmingly.
We have to use 9.2 and swift 4.0 until It is fixed. I didn't try Xcode 9.3 + Swift 4.0.

We are seeing the same warnings, Xcode 9.3 + Swift 4.0.

Same problems here

@sandeepo2o the problem is you need Xcode 9.3 with iOS 11.3 and many of us updated to iOS 11.3

I have the same problem.
The workaround that had less impact for me was to use a Custom Transform:

class CustomFloatTransform: TransformType {
    public typealias Object = Float
    public typealias JSON = NSNumber

    func transformFromJSON(_ value: Any?) -> Float? {
        if let number = value as? NSNumber {
            return number.floatValue
        }

        if let numberString = value as? String {
            return Float(numberString)
        }

        return nil
    }

    func transformToJSON(_ value: Float?) -> NSNumber? {
        if let float = value {
            return NSNumber(value: float)
        }
        return nil
    }
}

I've got the same issue on my projet.
@EduardoViegas's workaround works well until the bug is fixed.

Same Problem here

we just changed Floats to Double in our models

Does anyone have any information as to whether this is a bug or a legitimate API change with NSNumber and Floats in Swift 4.1?

i have same trouble, hope this can be solved as soon as possible.

@tristanhimmelman any news for us?

Same trouble, I converted all floats to doubles

@pmusolino sorry no updates on this. I don't have time to dig into this issue at the moment.

Hi all, I have merged a PR which should address the Float issue. Please use version 3.2.0.

I have not had a chance to look at the redeclaration warnings yet.

Closing this ticket as it is a duplicate of #967

Was this page helpful?
0 / 5 - 0 ratings