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 からアートワークを取得する方法を知っている人はいますか?