0

after new iOS 10.3 launched, In-Purchases functional stopped working in application suddenly. Actually, this method doesn't call anymore.

func requestDidFinish(request: SKRequest) {
  if let receiptURL = NSBundle.mainBundle().appStoreReceiptURL {
    if let receipt = NSData(contentsOfURL: receiptURL) {
      handleReceipt(receipt)
    }
}

Seems the connection to AppleStore is broken.

Svitlana
  • 2,938
  • 1
  • 29
  • 38

1 Answers1

0

It was Apple issue, already fixed!

Svitlana
  • 2,938
  • 1
  • 29
  • 38