Apologies for not directly answering your question, but I think you may want to consider an easier option. You should be able to sniff a form submission without injecting any javascript into the UIWebView. Just implement something like this in your UIWebViewDelegate:
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {
if ([[[request URL] absoluteString] hasPrefix:@"https://www.thirdpartysite.com/theirLoginScript"]) {
NSString *username = [self parseUsernameFromRequest:request];
NSString *password = [self parsePasswordFromRequest:request];
[self saveUsername:username andPassword:password];
}
return YES;
}
I've left the implementations of parseUsernameFromRequest:, parsePasswordFromRequest:, and saveUsername:andPassword: to your imagination.
(Hint: If the form uses the GET method, then you can get its parameters using [[request URL] parameterString]. If the form uses the POST method, then you can use [[NSString alloc] initWithData:[request HTTPBody] encoding:NSUTF8StringEncoding].)
By the way, you should never store sensitive information like passwords in NSUserDefaults. Apple provides Keychain Services for storing this type of information securely. Unfortunately working with the Keychain Services is surprisingly complex, so you may want to check out Buzz Andersen's Simple iPhone Keychain Code.
NSUserDefaults. Otherwise you're just asking for the kind of trouble Skype just got in to with their Android app. If you're storing user passwords, you should encrypt them. – lxt Apr 22 '11 at 18:03NSUserDefaults, so thanks for pointing that out. I also might not store passwords if I can't do it securely. – Wylie Apr 22 '11 at 20:38