2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

iOS 18.2から発生しているアプリ内購入エラーの修正方法

Last updated at Posted at 2025-01-20

概要

iOS18.2からアプリ内購入時のエラーの頻度が増加した。

どうやらiOS18.2でStoreKitpurchaseメソッドに変更があり、その影響を受けたものと見られる。
iOS18.2より前から存在するメソッドに以下のような記述があり、UIKitを使用している場合はcomfirmInoptionsを引数とする方のメソッドを使えとのこと。

Use Product/purchase(confirmIn:options:) for apps that use UIKit.

結論

UIKitを用いているアプリはpurchaseメソッドをiOS18.2以降と未満で処理を分ける。

if #available(iOS 18.2, *) {
  result = try await product.purchase(confirmIn: viewController)
} else {
  result = try await product.purchase()
}

実装時に参考にしたスレッドなど

Apple Forums

X

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?