개요

  • 문자를 숫자로, 숫자를 문자로 변환하는 방법에 대해 알아보자.

NSString to Integer

NSString* res = @"2048";
int count = [res intValue];

Integer to NSString

int count = 2048;
NSString *countString = [NSString stringWithFormat:@"%d", count];

+ Recent posts