Do we know if Xcode13 production will be released today?
Post
Replies
Boosts
Views
Activity
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???
Seeing it here too. I notice there is a Beta 7 referenced in the Feedback app. Maybe its fixed in that?
Still happening on 12.5.1
anyone?
So Chrome Canary works on Silicon
I'll add my name to the list. Not working here either. Keep getting Error 5. Tried Chrome Beta as well.
Would love to hear of a fix for this as well. Not working here
same here
Here as well. I am running this from an external drive. Beta 1 and 2 had no issues. Anyone have a work around for 3?
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()
}
}