Post

Replies

Boosts

Views

Activity

Reply to Launch Storyboard not showing image when project builds to device.
I will add that this is 7yrs old and have also encountered this. Not only on one app but on a second app as well. I've tried removing the image and setting the background to a color and that works. However, specifying an image in the storyboard the image does not show up? Attempting renaming the image and still does not show up. Very Very odd. How is this still an issue 7 yrs later? I have other apps that the LaunchScreen.storyboard works just fine???
Sep ’21
Reply to subscription sandbox
This is my issue. I have called finishTransaction and they still show up.extension IAPService: SKPaymentTransactionObserver { func paymentQueue(_ queue: SKPaymentQueue, updatedTransactions transactions: [SKPaymentTransaction]) { for transaction in transactions { print (transaction.transactionState.status(), transaction.payment.productIdentifier) switch transaction.transactionState { case .purchasing: break default: print ("calling finish on \(transaction.payment.productIdentifier)") queue.finishTransaction(transaction) print ("finish returned on \(transaction.payment.productIdentifier)") } } } func restorePurchaces () { print ("restoring purchases") paymentQueue.restoreCompletedTransactions() } }
Mar ’20