strcmp라는 함수를 지원하지 않아 strcasecmp함수를 사용하면 된다.
두 문자열이 대소문자 구분 없이 같으면 0을 반환한다.
char* str="Start";
char* str2="start";
NSLog(@"strcmp %d",strcasecmp(str,str2));
'프로그래밍 > iOS' 카테고리의 다른 글
[ios] ProgressBar 사용 (0) | 2015.04.08 |
---|---|
[ios] 문자열을 숫자로, 숫자를 문자열로 (0) | 2015.04.08 |
[ios] implicit declaration of function 'function name' is invalid in c99 (0) | 2015.04.08 |
[Mac] 원격접속 프로그램 (0) | 2015.04.08 |
[ios] 링크 에러 (0) | 2015.04.08 |