Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKeith Shadle
1,290 Pointsfloat number
What is a float number? I don't recall it in the lessons of scope and before. Having issues with this challenge task. Thanks, K
1 Answer
Mike Baxter
4,442 PointsA float is basically a number with decimals in it. As opposed to an integer, which is a whole number. You can make a float like this:
float someNumber = 1.2345;
NSLog(@"%f", someNumber);
That second line allows you to read the value in the console. Sometimes it's useful to put a float into a string, (which is what I did above), but it looks better like this:
float someNumber = 1.2345;
NSString *myString = [NSString stringWithFormat:@"float = %f", someNumber];