In-App 以编程方式购买获取产品
In-App Purchase get product programmatically
我创建了一个 UITableView
以通过 ID 为
的数组在商店中获取我的产品
获取产品 ID
+ (RageIAPHelper *)sharedInstance {
static dispatch_once_t once;
static RageIAPHelper * sharedInstance;
dispatch_once(&once, ^{
NSMutableArray *music = [[NSMutableArray alloc] initWithContentsOfURL:[NSURL URLWithString:@"http://mywebsite.com/music/myProduct.plist"]];
NSSet * productIdentifiers = [NSSet setWithArray:music];
sharedInstance = [[self alloc] initWithProductIdentifiers:productIdentifiers];
});
return sharedInstance;
}
这是远程 plist 文件中的结构:
<plist version="1.0">
<array>
<string>com.mydomain.MyApp.Prod01</string>
<string>com.mydomain.MyApp.Prod02</string>
<string>com.mydomain.MyApp.Prod03</string>
<string>com.mydomain.MyApp.Prod04</string>
<string>com.mydomain.MyApp.Prod05</string>
<string>com.mydomain.MyApp.Prod06</string>
</array>
</plist>
在 TableView 中我可以得到标题、价格和描述,但我知道如何得到插图,在 iTunesConnet 中你必须放上产品的封面,但如何得到这个?
这是获取价格、描述和名称的方法
SKProduct * product = (SKProduct *) _products[indexPath.row];
cell.textLabel.text = product.localizedTitle;
[_priceFormatter setLocale:product.priceLocal];
cell.detailTextLabel.text = [_priceFormatter stringFromNumber:product.price];
所以有人知道如何从 iTuneConnect 获取艺术作品吗?
您在 iTunes Connect
中添加的屏幕截图仅供 Apple 审核。您无法将其检索为应用程序的艺术品。
引用自 iTunes Connect:
Screenshot for Review: Before you submit your In-App Purchase
for review, you must upload a screenshot. This screenshot will be for review purposes only. It will not be displayed on the App Store.
正如@PeterFennema 所写,屏幕截图仅供那些将审查您的应用程序的人使用。所以他们可以检查In-App-Purchase
。以防他们不会立即找到它。
FYI : add a comment and tell them also as text where and how they can access the In-App-Purchase
为了实现你想要的图片,你必须调用每个单独的 SKProdukt
并检查 identifier
。将 identifier
保存在 NSDictionary
和相关的 UIImage
中。
问题是,每次您想要添加一些新的 In-App-Purchases
时,您都需要重新上传您的应用程序,并检查您的新 In-App-Purchases
。
我创建了一个 UITableView
以通过 ID 为
获取产品 ID
+ (RageIAPHelper *)sharedInstance {
static dispatch_once_t once;
static RageIAPHelper * sharedInstance;
dispatch_once(&once, ^{
NSMutableArray *music = [[NSMutableArray alloc] initWithContentsOfURL:[NSURL URLWithString:@"http://mywebsite.com/music/myProduct.plist"]];
NSSet * productIdentifiers = [NSSet setWithArray:music];
sharedInstance = [[self alloc] initWithProductIdentifiers:productIdentifiers];
});
return sharedInstance;
}
这是远程 plist 文件中的结构:
<plist version="1.0">
<array>
<string>com.mydomain.MyApp.Prod01</string>
<string>com.mydomain.MyApp.Prod02</string>
<string>com.mydomain.MyApp.Prod03</string>
<string>com.mydomain.MyApp.Prod04</string>
<string>com.mydomain.MyApp.Prod05</string>
<string>com.mydomain.MyApp.Prod06</string>
</array>
</plist>
在 TableView 中我可以得到标题、价格和描述,但我知道如何得到插图,在 iTunesConnet 中你必须放上产品的封面,但如何得到这个?
这是获取价格、描述和名称的方法
SKProduct * product = (SKProduct *) _products[indexPath.row];
cell.textLabel.text = product.localizedTitle;
[_priceFormatter setLocale:product.priceLocal];
cell.detailTextLabel.text = [_priceFormatter stringFromNumber:product.price];
所以有人知道如何从 iTuneConnect 获取艺术作品吗?
您在 iTunes Connect
中添加的屏幕截图仅供 Apple 审核。您无法将其检索为应用程序的艺术品。
引用自 iTunes Connect:
Screenshot for Review: Before you submit your
In-App Purchase
for review, you must upload a screenshot. This screenshot will be for review purposes only. It will not be displayed on the App Store.
正如@PeterFennema 所写,屏幕截图仅供那些将审查您的应用程序的人使用。所以他们可以检查In-App-Purchase
。以防他们不会立即找到它。
FYI : add a comment and tell them also as text where and how they can access the
In-App-Purchase
为了实现你想要的图片,你必须调用每个单独的 SKProdukt
并检查 identifier
。将 identifier
保存在 NSDictionary
和相关的 UIImage
中。
问题是,每次您想要添加一些新的 In-App-Purchases
时,您都需要重新上传您的应用程序,并检查您的新 In-App-Purchases
。