본문 바로가기
프로그래밍 놀이터/iOS

[objective c] 형변환

by 돼지왕 왕돼지 2017. 10. 28.
반응형

 [objective c] 형변환


%d, %e, %f, ... ), ... -> String ), Double, doublevalue, float, floatvalue, format character, intValue, ios 형변환, string 으로 형변환, string 형변환, stringwithFormat, [objective c] 형변환, 문자를 숫자로 ( String -> int, 숫자를 문자로 ( int


문자를 숫자로 ( 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




반응형

댓글