Skip to content

Instantly share code, notes, and snippets.

@prime31
Created April 19, 2012 22:37
Show Gist options
  • Save prime31/2424669 to your computer and use it in GitHub Desktop.
Save prime31/2424669 to your computer and use it in GitHub Desktop.
- (NSURLRequest*)webView:(WebView*)sender resource:(id)identifier willSendRequest:(NSURLRequest*)request redirectResponse:(NSURLResponse*)redirectResponse fromDataSource:(WebDataSource*)dataSource
{
// are we redirecting to my site only?
if( [request.URL.absoluteString hasPrefix:_mySiteYo] )
return request;
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment