SKProductsRequest

Hey guys,

does the "SKProductsRequest" for in-app purchases go to the internet (App Store) and collect the information or does it get the information of the product price and so on directly from the installed app on the device? Especially the following code in viewDidLoad()

Code Block
requestIAP = SKProductsRequest(productIdentifiers: Set([inAppIdentifierForProVersion]))
requestIAP.delegate = self
requestIAP.start()


Answered by Documentation Engineer in 615781022
The SKProductsRequest class retrieves information from the App Store.

However, you might use data in your app bundle, like a list of product identifiers, as part of creating the request.
Accepted Answer
The SKProductsRequest class retrieves information from the App Store.

However, you might use data in your app bundle, like a list of product identifiers, as part of creating the request.
SKProductsRequest
 
 
Q