[objective c] 형변환
[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 : %dfloat : %fdouble : %e %d, %e, %f, ... ), ... -> String ), Double, doublevalue, f..
2017. 10. 28.
[ios] String Concat ( String 연결하기 )
[ios] String Concat ( String 연결하기 ) -자바에서 + 나 StringBuilder 로 String 연결하다가 iOS 로 하려니 잘 모르겠어서 찾아봤다.아래와 같이 하면 된다. [NSString stringWithFormat:@“%@%@“, str1, str2]; +, ios string concat, Java, NSString, string +, string 연결, StringBuilder, stringwithFormat, [ios] String Concat ( String 연결하기 )
2017. 10. 25.