aparesidam
aparesidam

Reputation: 309

How to create pass with custom design?

Have a pass with Store Card style. How can I add 2nd row with data and change the label position (label should be below the value)? When I add second item in secondaryFields array it inserts the item in the 2nd column, the same row. Thanks.

Image as example:

enter image description here

Upvotes: 0

Views: 1481

Answers (1)

Andy Nugent
Andy Nugent

Reputation: 874

If you have a look here "Pass Style Sets the Overall Visual Appearance":

https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/PassKit_PG/Chapters/Creating.html#//apple_ref/doc/uid/TP40012195-CH4-SW45

It gives an overview of what fields are allowed on the different pass types.

To achieve what you describe you want to make the pass a generic pass and specify both secondary and auxiliary fields.

To switch the label to be below the data, you need to flip the values when specifying them, so set label ="Gold" and the value="Level". However it will still have the same formatting (the top one will still be smaller text)

Upvotes: 1

Related Questions