블로그 이미지
서비
나의 삶을 디자인 한다.

calendar

      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29      

Notice

2010/07/28 13:25 Code Library/Objective C

NSString를 int로 변환 하는 방법.


NSString *nStr;
nStr = @"16";
int j = [nStr intValue];



int를 NSString로 변환 하는 방법.

int j = 0;
NSString *nStr = [NSString stringWithFormat:@"%d",j];

posted by 서비
prev 1 2 3 4 5 6 ... 15 next