In my iOS app, as part of the mobile payments options, I'd like to direct users who have the Square app installed on their device to use this as a payment option.

Is there a custom URL scheme that Square uses that would allow me to launch their app from within mine?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

Yes, the Square app does have a custom URL schema you can call: square://

You can also see if the application is installed by the following method:

- (BOOL)isSquareInstalled 
{ 
    return [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"square://"]]; 
}
link|improve this answer
feedback

The Square Pay app uses the URL Scheme square-pay://

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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