Post

Replies

Boosts

Views

Activity

Comment on SKStoreProductViewController fails to present on iOS 17 RC
Below is the minimal reproducible code: var parametersDictionary = [SKStoreProductParameterITunesItemIdentifier: "a non-existent itunes_id"] let store = SKStoreProductViewController() store.delegate = self store.loadProduct(withParameters: parametersDictionary) { (result: Bool, error: Error?) in print("Result : (result), Error: (error)") // Result : true, Error: nil } You only need to fill in a non-existent itunes_id to reproduce this problem.
Sep ’23