SKProductsResponse Reference
| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/StoreKit.framework |
| Availability | Available in iOS 3.0 and later. |
| Companion guide | |
| Declared in | SKProductsRequest.h |
Overview
An SKProductsResponse object is returned by the Apple App Store in response to a request for information about a list of products.
Properties
invalidProductIdentifiers
An array of product identifier strings that were not recognized by the Apple App Store. (read-only)
@property(nonatomic, readonly) NSArray *invalidProductIdentifiers
Discussion
This list should typically be empty.
Availability
- Available in iOS 3.0 and later.
Declared In
SKProductsRequest.hproducts
A list of products, one product for each valid product identifier provided in the original request. (read-only)
@property(nonatomic, readonly) NSArray *products
Discussion
The array consists of a list of SKProduct objects.
Availability
- Available in iOS 3.0 and later.
Declared In
SKProductsRequest.h© 2011 Apple Inc. All Rights Reserved. (Last updated: 2011-06-06)