반응형
[objective c] 형변환 |
문자를 숫자로 ( String -> int, float, double, ... )
-
int aInt = [aString intValue];
float aFloat = [aString floatValue];
double aDouble = [aString doubleValue];
숫자를 문자로 ( int, float, double, ... -> String )
-
아래와 같이 stringWithFormat 을 이용한다.
NSString* aIntStr = [NSString stringWithFormat:@“%d”, aInt];
int : %d
float : %f
double : %e
반응형
'프로그래밍 놀이터 > iOS' 카테고리의 다른 글
[ios] Nullable & NonNull annotation (0) | 2017.10.30 |
---|---|
[ios] ARC 와 Toll-free bridging (0) | 2017.10.29 |
[ios] abstract class 만드는 방법 (0) | 2017.10.27 |
[ios] Solution for "The resource could not be loaded because the App Transport Security policy requires the use of a secure connection" (0) | 2017.10.26 |
[ios] String Concat ( String 연결하기 ) (0) | 2017.10.25 |
댓글