Posts tagged nsstring
Get to the point – Code Snippets: NSString to NSInteger & vice versa
Feb 7th
NSString to NSInteger code snippet:
NSString *strTest = [NSString stringWithFormat:@"%d", 10];
NSInteger to NSString code snippet:
NSInteger iTest = [strTest integerValue];