我已经创建了一个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 中我可以获取 Title、Price 和 Description,但我知道如何获取 Artwork,在 iTunesConnet 中你必须放置产品的封面,但是如何获取呢?
这是获取价格、描述和名称的方法
SKProduct * product = (SKProduct *) _products[indexPath.row];
cell.textLabel.text = product.localizedTitle;
[_priceFormatter setLocale:product.priceLocal];
cell.detailTextLabel.text = [_priceFormatter stringFromNumber:product.price];
那么有人知道如何从 iTuneConnect 获取艺术品吗?