Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you control the order of passes while adding it to Apple Wallet?

I am using this API to add multiple grouped passes to Apple Wallet. I realized that added passes in the wallet doesn't follow the order of array [PKPass] that I gave it to this API.

public func addPasses(passes: [PKPass], withCompletionHandler completion: ((PKPassLibraryAddPassesStatus) -> Void)?)

The interesting thing to note here is when I tap on View All before adding the passes it does show all the passes in order but after tapping on Add All and then launch the Wallet app to see the order od added pass it's not same anymore.

Any clue why this is happening and how to maintain an order?

like image 470
kidsid49 Avatar asked Nov 30 '16 06:11

kidsid49


People also ask

How do I change the order of passes in Apple Wallet?

Rearrange your passesIn the Wallet stack, touch and hold the pass you want to move. Drag the pass to a new place in the stack. The pass order is updated on your iPhone, iPod touch, and Apple Watch where you're signed in with your Apple ID.

Can you organize your Apple Wallet?

To organize your cards, all you have to do is select each one as your Default Card in order from last to first. Let's say you have 3 cards and want to prioritize them as 1, 2, 3. Select 3rd as Default Card, then 2nd, then 1st, leaving that one as the new default.

How do I reorder my Wallet cards?

Reorder your payment methodsOpen the Google Wallet app . At the top, from the right edge of the screen, swipe left to scroll through your payment methods until you get to the last one. Tap 'Edit card order' . To change the order, tap, hold and drag a card.

How do I manage my Wallet on my iPhone?

Change your Apple Pay settings Go to Settings > Wallet & Apple Pay. Choose options such as the following: Double-Click Side Button: (on an iPhone with Face ID) Your cards and passes appear on the screen when you double-click the side button.


1 Answers

There is no documentation or PassKit API which states in which order can passes appear in Wallet app.

It can only be done manually as stated here.

To reorder your passes, tap and hold a pass, then drag it to a new place. With iOS 7 or later, your change will update on all of your devices.

like image 86
Sahil Kapoor Avatar answered Sep 26 '22 23:09

Sahil Kapoor