I have an iOS application that does things that make no sense to me. I have several float variables defined in my interface that are not assigned correctly.
kettleVolume = 30; lbsGrain = 5; mashIn = 65; grainTemp = 20;
When I do this on the debugger, I see the following values ββvery clearly:
kettleVolume float 1.09038e-33; lbsGrain float 30 mashIn float 5 grainTemp float 65
Somehow they get the values ββfrom the string above them? What am I doing wrong?
James source share