I'm using AFNetworking version 3.1 in Cocopods. When call the API, the response is not correct. Some decimal had been append on the result as below:
{ RewardTopUp = 100; RewardTopupGiven = 9.015000000000001; }
But the correct response backend should be as below:
{ RewardTopUp = 150; RewardTopupGiven = 9.015; }
Why the response will append a few decimal for the response object at AFNetworking?
Can someone help or someone had facing same issues?