«nsmutablestring» 태그된 질문

5
NSString이 다른 특정 문자열로 시작하는지 확인하는 방법은 무엇입니까?
URL로 사용할 문자열이 http로 시작하는지 확인하려고합니다. 지금 확인하려는 방식이 작동하지 않는 것 같습니다. 내 코드는 다음과 같습니다. NSMutableString *temp = [[NSMutableString alloc] initWithString:@"http://"]; if ([businessWebsite rangeOfString:@"http"].location == NSNotFound){ NSString *temp2 = [[NSString alloc] init]; temp2 = businessWebsite; [temp appendString:temp2]; businessWebsite = temp2; NSLog(@"Updated BusinessWebsite is: %@", businessWebsite); } [web setBusinessWebsiteUrl:businessWebsite]; …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.