UIWebView comparing current and defined URL's with a loop depending on result
- by Syleron
I am trying to compare the current url in webView with a defined url say google.com
so in theory..
NSURLRequest *currentRequest = [webView request];
NSURL *currentURL = [currentRequest URL];
would give us our current url...
NSString *newurl = @"http://www.google.com";
this would give us the compared to defined url
while (!currentURL == newurl) {
//do whatever here because currentURL does not equal the newurl
}
This does not seem to work though.. solutions?