Я пытаюсь проверить, будет ли строка, которую я собираюсь использовать в качестве 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];
Любые идеи?