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 want to get the current domain of UIWebView

For example:

http://a.m.tmall.com/i15104234454.htm?sid=a0c935526ab19ee7051225579c90cf96&spm=875.124399.275145.1 -> tmall.com

Is there any reliable way to do this?

I saw someone suggest this:

 NSString *currentURL = myWebView.request.URL.absoluteString;

I know regex could do it. Any other way?

share|improve this question
Did the myWebView.request.URL.absoluteString work? If it didn't maybe you could try myWebView.request.URL.baseURL. – qegal Jul 17 '12 at 3:25
@qegal no, this memeber seems to be null. – Eout Jul 17 '12 at 3:28

1 Answer

up vote 2 down vote accepted

First, what do mean when you say you want to get the domain. In essence, how rigorous do you want to be? Domain parsing can be very complex (see: how to get domain name from URL).

At the very least start, with URL.absoluteURL.host instead of URL.absoluteString. That way you don't have to extract the host from the URL string.

You may also want use [webView stringByEvaluatingJavaScriptFromString:@"document.domain"] as your starting point. At least that way you will know what the browser thinks the domain is.

Hope any of that mess helps.

share|improve this answer
Great link and great suggestion. Thank you. – Eout Jul 17 '12 at 4:11

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.