如何以编程或其他方式获取Apple应用程序内购买图标?

发布于 2025-01-22 08:04:10 字数 399 浏览 0 评论 0原文

申请提供应用内购买图标吗?我一直在尝试找到,但无法在任何地方买到它。在我的应用程序中,我想向客户展示各种付款方式,例如贝宝(PayPal),Apple Pay,应用内购买等,找不到任何应用程序内购买的图标。我已经看到了一些使用图标的应用程序,该应用程序像Apple Pay图标,但在上面写了InApp,不确定在哪里可以买到它?

有没有办法以编程方式获取它?如果是的话?

连接使用此应用内购买图标的应用程序的屏幕截图。从哪里得到它?

Does apply provide In-App Purchase icon? I've been trying to find but couldn't get it anywhere. In my app I want to show customers various payment options such as PayPal, Apple Pay, In-App Purchase etc. Can't find any icon for In-App Purchase. I've seen some apps using an icon which is like Apple Pay icon but InApp written on it, not sure where to get it?

Is there a way to get it programatically? If yes how?

Attaching a screenshot of an app which has used this in-app purchase icon. Where to get it from?

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南烟 2025-01-29 08:04:10

似乎苹果没有为我们提供现成的按钮。

接口


您可以使用Apple图标和inapp文本进行UIBUTTON,设置
Layer Cornerradius,<代码> borderwidth 和borderColor for IT。

使用imageedgeinsetstitleedgeinsetscontentedgeinsets要调整偏移量。

sf符号很有帮助,您可以使用字符串applelogo找到Apple图标,然后对其进行补充。

let appleIcon = UIImage(systemName: "applelogo")

它适用于ios14.0+。

Apple购买


电话Apple Puilt API手动

您可以在此处找到github swiftystorekit 或使用或使用或使用Apple Api Storekit

It seems that Apple does not provide an ready-made Button for us.

Interface


You can use Apple icon and InApp text to make a UIButton, set
layer cornerRadiusborderWidth and borderColor for it.

use imageEdgeInsetstitleEdgeInsets and contentEdgeInsets are to adjust offset.

SF Symbols help a lot, you can find the Apple icon with String applelogo and then complement it.

let appleIcon = UIImage(systemName: "applelogo")

It is available for iOS14.0+.

Apple Purchase


Call Apple Purchase API manually

You can find GitHub here SwiftyStoreKit or use Apple API StoreKit

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文