썩소천사
- 문자 비교 관련 - //두 개의 스트링이 같은지 비교 if ([str1 isEqualToString : res] == YES) //해당 문자열로 시작하는지 검사 BOOL check = [str hasPrefix:@"hello"]; //해당 문자열로 끝나는지 검사 BOOL check = [str hasSuffix:@"world"]; //문자열 1글자씩 비교 하기 for (int i = 0; i