I am trying to work with the data inside the barcode string in shared PKPass. The documentation shows that is should look for @property (nonatomic, readonly, nullable) PKBarcode *primaryBarcode; I have tried to use it like this guard let code = pass.primaryBarcode?.message else { return } I get a constant message that PKPass has no member primaryBarcode
The PKPass.h file in my IOS SDK does not seem to include the @property primaryBarcode or @property barcode.
I am running Xcode 16.4 (16F6) and my app target is 17.6 + Is there a restriction on this property?
I cannot find an SDK later than mine - the App Store does not offer one.
I am unsure of this is a public or private issue - does anyone know?
Thanks for reading this.
Max