Reputation: 7278
I need to pass some extra informations along with UIWebView loadRequest:
so that it reaches my implementation of NSURLProtocol
. The information cannot be bound to NSURLRequest
because the information must be retained with NSURLRequest mainDocumentURL
as well. So i subclassed NSURL
and constructed NSURLRequest
with it. I already knew that the NSURLRequest
which reaches NSURLProtocol startLoading
is NOT the instance i have fed to UIWebView loadRequest
, so i implemented NSURL copyWithZone
too, naively expecting that URL loading system will use it.
Now, NSURLProtocol canInitWithRequest
is called not once as one would reasonably expect, but at least 4 times before startLoading
. First 2 times of that, the incoming NSURLRequest
still contains my custom NSURL
implementation. Then an unfortunate internal code called CFURLCopyAbsoluteURL
asks for the absoluteURL
of my custom NSURL
and the next canInitWithRequest
(and subsequent startLoading
) already gets a completely new NSURLRequest
with fresh NSURL
in it. copyWithZone
is never called and my subclassed NSURL
is lost.
Before i give up and implement an inferior and fragile solution with attaching stuff directly to the URL string, i would like to ask the wizards of higher level, whether they see a way how to catch that initial blink on the NSURLProtocol
radar or how to trick CFURLCopyAbsoluteURL
into carrying my custom instance. I have tried to hack NSURL absoluteURL
by returning again a new instance of my custom NSURL class, but it didn't help. I have seen some promise in NSURLProtocol setProperty
functionality, but now it appears pretty useless. URL loading system creates new instances of everything happily and NSURLRequest
arrived in NSURLProtocol
seems to be the same as the one entered into UIWebView
only accidentally.
UPDATE: ok i wanted to keep the post as short as possible, but the even the first reply is asking for technical background, so here we go: i've got multiple UIWebView
s in app. These views may run requests concurrently and absolutely can run requests for the same URL. It's like tabs in desktop browser. But i need to distinguish which UIWebView
was the origin of each particular NSURLRequest
arriving to the NSURLProtocol
. I need a context being carried with each URL request. I can't simply map the URLs to data, because multiple UIWebViews
may be loading the same URL at any moment.
UPDATE 2: Attaching the context information to NSURL
is preferred and, as far as my understanding goes, the only usable. The issue is that requests for resources referenced inside page (images etc.) do not go through UIWebViewDelegate
at all and end up in NSURLProtocol
directly. I don't have a chance to touch, inspect or modify such requests anywhere prior to NSURLProtocol
. The only contextual link for such requests is their NSURLRequest mainDocumentURL
.
Upvotes: 6
Views: 1574
Reputation: 1
I had the same problem. I finally stuck to the solution suggested by Matthew (using the user agent string). However, as the solution is not fleshed out, I add a new answer with more details. Furthermore, I found out that you do not need to send a request to make the user agent "stick". It is sufficient to get via javascript as suggested here.
Following steps worked for me:
(1) Get the current default user agent. You need it later to put it back into the request in NSURLProtocol. You need to use a new webview insatnce, as getting the user agent will make it stick to the webview, so you can not change it later on.
UIWebView* myWebview = [[UIWebView alloc] init];
NSString* defaultUserAgent = [myWebview stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];
[myWebview release]; // no needed with ARC, but to emphasize, that the webview instance is not needed anymore
(2) Change the value in the standardUserDefaults (taken from here).
NSDictionary* userAgentDict = [NSDictionary dictionaryWithObjectsAndKeys:@"yourUserAgent", @"UserAgent", nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:userAgentDict];
(3) Make the new user agent string stick to your webView by getting it via javascript as done in (1), but this time on the webview instance you actually work with.
(4) Revert the default user agent in the standardUserDefaults as done here.
Upvotes: 0
Reputation: 19544
You can pass options through custom request headers, assuming that the targeted website or service provider don't somehow strip those in transit.
The challenge there would be coming up with an encoding scheme that can be reasonable encoded into an ASCII string for the header field value and then decoded into the actual value you want. For this, a custom NSValueTransformer
would seem most appropriate.
Upvotes: 1
Reputation: 4537
If there's some way to get your original NSURL
used as mainDocumentURL
that would be ideal. If there's no way to prevent it being copied, I thought of the following hack as an alternative:
Before the creation of each UIWebView
, set the user agent string to a unique value. Supposedly this change only affects UIWebView
objects that are created subsequently, so each view will end up with its own distinctive user agent string.
In the NSURLProtocol
implementation, you can check the user agent string to identify the associated UIWebView
and pass it through to the real protocol handler using the actual user agent string (so the server will see nothing different).
All this depends on the views really ending up with different UA strings. Let me know if you manage to get it to work!
Upvotes: 3
Reputation: 299265
You say that you can't put it on the NSURLRequest
, but I'm not clear why from your updated discussion. That would be the most natural place to put it.
webView:shouldLoadWithRequest:navigationType:
.objc_setAssociatedObject
. Then return YES
. (It would be nice to use setProperty:forKey:inRequest:
here, but UIWebView
passes us a non-mutable request, so we can only attach associated objects. Yet another way that UIWebView
is a pale shadow of OS X's WebView
, which can handle this).NSProtocol
, read your extra property using objc_getAssociatedObject
. The request should be the same one you were presented earlier. You suggest that this isn't the case. Are you saying that the request at webView:shouldLoadWithRequest:navigationType:
is different than the request at initWithRequest:cachedResponse:client:
?Am I missing another requirement or quirk?
Upvotes: 1