8

Possible Duplicate:
iOS 6 Passbook: Open Passbook app from my app

Hi what is the URLScheme for the new passbook app in IOS6 as i can't find it anywhere on the web. Thanks in advance

Community
  • 1
  • 1
OnkaPlonka
  • 1,232
  • 10
  • 19

2 Answers2

15

Hi I've just found the answer

It's 'shoebox' so in XCode you would implement:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"shoebox://"]];
OnkaPlonka
  • 1,232
  • 10
  • 19
  • You're right. You can also test this in Safari.app by just entering `shoebox://` in the address bar and then opening the URL – Besi Mar 06 '14 at 12:20
1

There is no URL schemes provided for the Passbook application till now (January 1st 2013).

I saw a similar thread on Stack Overflow, please check that too.

Community
  • 1
  • 1
Midhun MP
  • 103,496
  • 31
  • 153
  • 200