You can find the results of your search below. If you didn't find what you were looking for, you can create or edit the page named after your query with the appropriate tool.
===== NSNumber =====
NSNumber is a subclass of NSValue that offers a value as any C scalar (numeric) type.\\... ^
| [[objective-c:foundation.framework:nsnumber.h:initWith|initWith]] | |
| [[objective-c:foundation.framework:nsnumber.h:initWithBool|initWithBool]] | |
| [[objective-c:foundation.framework:nsnumber.h:initWithInt|initWithInt]] | |
| [[objective-c:foundation.framework:nsnumber.h:initWithIntege
ouble myDouble = 3.14;
//** Initializing NSNumber Object **
NSNumber *myDoubleNumber = [[NSNumber alloc]initWithDouble:myDouble];
//** To access your value use doubleValue **
if ([m
t myFloat = 1.123456f;
//** Initializing NSNumber Object **
NSNumber *myFloatNumber = [[NSNumber alloc]initWithFloat:myFloat];
//** To access your value use floatValue **
if ([myFlo
Int = 1;
//******************** Initializing NSNumber Object *************************
//** NS... released, if you`re not working with ARC! **
NSNumber *myUnsignedIntNumber = [[NSNumber alloc]initWithU