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.

In my app I log in to tripIt site in UiWebView, but I decided that it would be better to autofill email and password boxes like this.

-(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {
//save form data
if(navigationType == UIWebViewNavigationTypeFormSubmitted) {

    //grab the data from the page
    NSString *username = [vv stringByEvaluatingJavaScriptFromString: @"document.getElementById('email_address').value"];
    NSString *password = [vv stringByEvaluatingJavaScriptFromString: @"document.getElementById('password').value"];

    //store values locally
    [[NSUserDefaults standardUserDefaults] setObject:username forKey:@"username"];
    [SFHFKeychainUtils storeUsername:username andPassword:password forServiceName:@"Tripit" updateExisting:YES error:nil];

}
return YES;
}

-(void)webViewDidFinishLoad:(UIWebView *)webView {
//verify view is on the login page of the site (simplified)
NSURL *requestURL = [vv.request URL];
if ([requestURL.absoluteString rangeOfString:@"www.tripit.com/oauth/authorize"].location != NSNotFound) {

    //check for stored login credentials
    NSString *username = [[NSUserDefaults standardUserDefaults] objectForKey:@"username"];

    if (username.length != 0 ) {

        //create js strings
        NSString *loadUsernameJS = [NSString stringWithFormat:@"document.getElementById('email_address').value ='%@'", username];
        NSString *password = [SFHFKeychainUtils getPasswordForUsername: username andServiceName:@"Tripit" error:nil];
        if (password.length == 0 ) password = @"";
        NSString *loadPasswordJS = [NSString stringWithFormat:@"document.getElementById('password').value ='%@'", password];

        //autofill the form
        [vv stringByEvaluatingJavaScriptFromString: loadUsernameJS];
        [vv stringByEvaluatingJavaScriptFromString: loadPasswordJS];
    }
}
}

But how can I press sign up button in code in order to hide instantly uiwebview?

share|improve this question
I'm somewhat confused about what you're asking; do you want to hide a view on a button press? Or do you want to display it and then immediately hide it? – Dustin Aug 8 '12 at 17:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.