菜鸟教程小白 发表于 2022-12-12 15:50:26

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


                                            <p><p>我创建了一个 <code>UITableView</code> 以通过具有 id 的数组将我的产品放在商店中:</p>

<p><strong>获取产品 ID</strong></p>

<pre><code>+ (RageIAPHelper *)sharedInstance {
    static dispatch_once_t once;
    static RageIAPHelper * sharedInstance;
    dispatch_once(&amp;once, ^{

      NSMutableArray *music = [ initWithContentsOfURL:];

      NSSet * productIdentifiers = ;

      sharedInstance = [ initWithProductIdentifiers:productIdentifiers];
    });
    return sharedInstance;
}
</code></pre>

<p><strong>这是远程 plist 文件中的结构:</strong></p>

<pre><code>&lt;plist version=&#34;1.0&#34;&gt;
&lt;array&gt;
&lt;string&gt;com.mydomain.MyApp.Prod01&lt;/string&gt;
    &lt;string&gt;com.mydomain.MyApp.Prod02&lt;/string&gt;
    &lt;string&gt;com.mydomain.MyApp.Prod03&lt;/string&gt;
    &lt;string&gt;com.mydomain.MyApp.Prod04&lt;/string&gt;
    &lt;string&gt;com.mydomain.MyApp.Prod05&lt;/string&gt;
    &lt;string&gt;com.mydomain.MyApp.Prod06&lt;/string&gt;
&lt;/array&gt;
&lt;/plist&gt;
</code></pre>

<p>在TableView中我可以得到Title、Price和Description,但是我知道如何得到Artwork,在iTunesConnet中你必须放产品的封面,但是怎么能得到呢?</p>

<p> <img src="/image/wiK0w.png" alt="enter image description here"/> </p>

<p><strong>这是获取价格、描述和名称的方法</strong></p>

<pre><code>SKProduct * product = (SKProduct *) _products;
cell.textLabel.text = product.localizedTitle;
;
cell.detailTextLabel.text = ;
</code></pre>

<p>那么有谁知道如何从 iTuneConnect 获取艺术品?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您在 <code>iTunes Connect</code> 中添加的屏幕截图仅供 Apple 审核。您无法将其检索为您的应用程序的艺术品。 </p>

<p>来自 iTunes Connect:</p>

<blockquote>
<p>Screenshot for Review: Before you submit your <code>In-App Purchase</code> for review, you must upload a screenshot. This screenshot will be for review purposes only. It will not be displayed on the App Store.</p>
</blockquote></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 应用内购买以编程方式获取产品,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31408682/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31408682/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 应用内购买以编程方式获取产品