Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use [webView shouldStartLoadWithRequest: navigationType:] to control the user navigation in a UIWebView. I was comparing the string with "isEqualToString" method like:

NSString *requestString = [[request URL] absoluteString];
if ([requestString isEqualToString:@"http://www.myComapnyWeb.com"])  return YES;
else return NO;

When the device was in IOS 4.3 this was working fine. Once the device got upgraded to IOS 5, (5.1.1 exactly), the above logic failed. With some NSLog, I noticed that the URL is returned all in lower case, (mycompanyweb instead of myCompanyWeb) and hence the above string comparison fails.

I can fix it by changing the comparison with lowercaseString method. Want to find out if anyone else experienced this. Any other solution? And in future, do we need to expect such changes?

share|improve this question

1 Answer

up vote 2 down vote accepted

Try:

NSString *requestString = [request.URL absoluteString];

That should give you the correct case.

I tested in Xcode version 4.5

As far as "expecting such changes", it's always possible they will make changes. Sometimes it's for the better, and sometimes....... =)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.