2011년 2월 18일 금요일
2011년 2월 16일 수요일
2011년 2월 10일 목요일
Objective-C Casting
# int -> NSString
// 숫자 7이 있다.
int myint=7;
// 7로 초기화한 myint를 NSString 타입으로 캐스팅한다.
NSString *myString = [NSString stringWithFormat:@"%d", myint];
//이제 myint의 숫자 7이 string 형태로 myString 에 할당되었다.
# NSString -> int
//이제 반대로 mystring의 값을 int형태로 형변환 해보자.
//이번에도 매우 간단하다.
myint = [myString intValue];
// 숫자 7이 있다.
int myint=7;
// 7로 초기화한 myint를 NSString 타입으로 캐스팅한다.
NSString *myString = [NSString stringWithFormat:@"%d", myint];
//이제 myint의 숫자 7이 string 형태로 myString 에 할당되었다.
# NSString -> int
//이제 반대로 mystring의 값을 int형태로 형변환 해보자.
//이번에도 매우 간단하다.
myint = [myString intValue];
피드 구독하기:
글 (Atom)