개요
- 문자를 숫자로, 숫자를 문자로 변환하는 방법에 대해 알아보자.
NSString to Integer
NSString* res = @"2048";
int count = [res intValue];
Integer to NSString
int count = 2048;
NSString *countString = [NSString stringWithFormat:@"%d", count];
'프로그래밍 > iOS' 카테고리의 다른 글
[Unity] iOS Embedded Binaries 추가하기 (0) | 2017.10.10 |
---|---|
[iOS] ARC 적용 후, 메모리 해제 방식 비교 (0) | 2016.11.30 |