菜鸟教程小白 发表于 2022-12-13 03:13:32

ios - 无法在应用购买中从 iTunes Connect 获取产品标识符?


                                            <p><p>我在我的项目中使用应用内购买。目前正在从沙盒进行购买。但我发现了一个关于产品标识符的问题。现在我正在对产品标识符进行硬编码,如下所示。我手动将产品标识符存储在 plist (ProductId.plist) 中(请引用图片)</p>

<pre><code>#import &#34;RageIAPHelper.h&#34;

@implementation RageIAPHelper

+ (RageIAPHelper *)sharedInstance {
    static dispatch_once_t once;
    static RageIAPHelper * sharedInstance;
    dispatch_once(&amp;once, ^{
      NSString* plistPath = [ pathForResource:@&#34;ProductId&#34; ofType:@&#34;plist&#34;];

      NSArray * contentArray = ;
      NSLog(@&#34;content aray:%@&#34;,contentArray);
      NSSet * productIdentifiers= ;
      sharedInstance = [ initWithProductIdentifiers:productIdentifiers];
    });
    return sharedInstance;
}

@end
</code></pre>

<p>//应用购买教程中来自 RAY WENDERLICH 的代码</p>

<p> <img src="/image/GQrl2.png" alt="ProductId.PLIST"/> </p>

<p>问题现在无法从 iTunes Store 动态获取产品标识符。那么如何从 iTunes 商店获取产品 ID 而不是在 plist 中进行硬编码???
请帮忙</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以执行以下操作以获取产品数据。 </p>

<pre><code> NSSet *productIdentifiers = ;
self.productsRequest = [ initWithProductIdentifiers:productIdentifiers];
self.productsRequest.delegate = self;
;
</code></pre>

<p>此代表将接到电话,将获得您所需的产品信息</p>

<pre><code>- (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 无法在应用购买中从 iTunes Connect 获取产品标识符?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/17872384/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/17872384/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 无法在应用购买中从 iTunes Connect 获取产品标识符?