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()
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()
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.
However, you might use data in your app bundle, like a list of product identifiers, as part of creating the request.