Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question already has an answer here:

I would like to add a payment module on my Iphone Application that I am going to build,

I want the users to pay using Pago. When webpage loads a button is displayed, on clicking the button a new page opens in a new window.

On that page user enters the payment details and payment is processed. As we have no control over this window, So we are not able to call our custom url to return to our app on payment success.

So how can I return to App on payment success?

share|improve this question
are you asking about paypal>? – Rajneesh071 Feb 13 at 10:45
It is 123pago 123pago.net.ve – Steve Jobs Feb 13 at 10:48
I liked your name, and will try to get the answer :) – Anoop Vaidya Feb 25 at 6:37
hello @SteveJobs.. – Hercules Feb 25 at 14:11
any link from where you are implementing it – Hercules Feb 25 at 14:16

marked as duplicate by George Stocker Mar 4 at 15:02

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 1 down vote accepted
+50

There is no easy way to do it. Try opening the page in web view and add when the url of the success page match to the url in web view display the success message.

share|improve this answer

I want the users to pay using Pago. When webpage loads a button is displayed, on clicking ? the button a new page opens in a new window.

Does the new page opens inside a webview in your app?

If so, you just have to get the URL you get on payment success (if you can) and use the following web view delegate method to catch the URL:

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
  NSString *urlString = [NSString stringWithFormat:@"%@", request.URL];

  // If not found, load url
  if ([urlString rangeOfString:@"http://you-url"].location == NSNotFound)
  {
    return YES;
  }
  // If found, intercept
  else
  {
    // Do what you want here
    return NO;
  }
}
share|improve this answer
New page is not opening in webview,same thing opening in safari. – Steve Jobs Feb 26 at 6:08
Ok then i don't know sorry. – Jeremy Feb 26 at 10:36

Not the answer you're looking for? Browse other questions tagged or ask your own question.