How to convert an NSString into an integer
Imagine you had an NSString and wanted to save it as an integer value.
You can use the intValue method for that:
NSString *myString = @"47";
int myInt = [myString intValue];
To do the reverse, you can use the initWithFormat method:
int myInt = 32;
NSString *myOtherString = [[NSString alloc]initWithFormat:@"%i", myInt];
Related
Jay is the CEO and founder of WP Hosting, a boutique style managed WordPress hosting and support service. He has been working with Plesk since version 9 and is a qualified Parallels Automation Professional. In his spare time he likes to develop iOS apps and WordPress plugins, or draw on tablet devices.
He blogs about his coding journey at http://wpguru.co.uk and http://pinkstone.co.uk.
Add your voice!