User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







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

initWithInt

 
- (id)initWithInt:(int)value;

ObjC Sourcecode Example

    int myInt = 30;
 
    //******************** Initializing NSNumber Object *************************
 
    //** NSNumbers need to be released, if you`re not working with ARC! **
 
    NSNumber *myIntNumber = [[NSNumber alloc]initWithInt:myInt];
 
    NSLog(@"myIntNumber: %@", myIntNumber);
 

Output for this example code

2012-05-20 19:26:47.830 NSNumberSample[818:f803] myIntNumber: 30

on the occasion of the current invasion of Russia in Ukraine

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

Impressum Datenschutz