ios - 应用内购买以编程方式获取产品

标签 ios objective-c in-app-purchase nsset skproduct

我创建了一个 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中你必须放置产品的封面,但如何获取这个?

enter image description here

以下是获取价格、描述和名称的方法

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.

关于ios - 应用内购买以编程方式获取产品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31408682/

相关文章:

ios - 如何从 iOS 网络应用程序与蓝牙设备配对?

iphone - <BTSViewController : 0x865c520> 的开始/结束外观转换调用不平衡

ios - Xcode 8.2 模拟器在调试时崩溃并退出保存屏幕截图

ios - 如何获得已经被解雇的 UILocalNotification

objective-c - 完成 block 不执行

android - 在 android 中的 App Purchase 实现中

ios - 在 IOS 上将 CoreGraphics 渲染为 OpenGL 纹理

ios - 在 iOS 上移动或复制大文件(> 100 MB)的最可靠方法是什么?

ios - 使用appStoreReceiptURL恢复非续订订阅

Flutter In App Purchase我应该在_verifyPurchase()中包含什么