User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







objective-c:foundation.framework:nsnumber.h:initwithdouble

initWithDouble

 
- (id)initWithDouble:(double)value;
 

ObjC Sourcecode Example

    double myDouble = 3.14;
 
    //******************** Initializing NSNumber Object *************************
 
    //** NSNumbers need to be released, if you`re not working with ARC! **
 
    NSNumber *myDoubleNumber = [[NSNumber alloc]initWithDouble:myDouble];
 
    NSLog(@"myDoubleNumber: %@", myDoubleNumber);
 

Output for this example code

2012-05-20 19:26:47.831 NSNumberSample[818:f803] myDoubleNumber: 3.14

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
objective-c/foundation.framework/nsnumber.h/initwithdouble.txt · Last modified: 2024/02/16 01:12 (external edit)

Impressum Datenschutz