Post

Replies

Boosts

Views

Activity

Reply to iOS 15 CollectionView Crash (Xcode 13)
I am seeing the same issue on Xcode 13.2 beta. After running the code under Xcode 12.5.1, This log message appears: [Assert] Attempted to scroll the collection view to an out-of-bounds item (0) when there are only 0 items in section 0. This will become an assert in a future version. I guess this is the future version when it was decided to assert. You could try to guard the code from being executed: guard indexPath.row < collectionView.numberOfItems(inSection: indexPath.section) else {return}
Topic: UI Frameworks SubTopic: UIKit Tags:
Jan ’22
Reply to Conditional modifiers: if #available iOS 14
@JakeShort thank you so much! This was exactly what I needed
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Nov ’23
Reply to While trying to add the pass to the Apple Simulator i am getting the below error.Could you please help to fix this error.A
How was the pass signed? see https://developer.apple.com/documentation/walletpasses/building_a_pass#3732525
Replies
Boosts
Views
Activity
May ’23
Reply to Not able to add pass to wallet
Take a look at this article: https://medium.com/@daviddvd19/inapp-provisioning-enrolling-cards-en-5c368591d320
Replies
Boosts
Views
Activity
May ’23
Reply to Apple Wallet - Unable to provision in RELEASE - Entitlements failure
Hey, I'm really not sure about this (and maybe you already found the solution), could it be that the use of Beta profile is for DEBUG/DEVELOP and not for RELEASE/TestFlight?
Topic: Code Signing SubTopic: Entitlements Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to iOS 15 CollectionView Crash (Xcode 13)
I am seeing the same issue on Xcode 13.2 beta. After running the code under Xcode 12.5.1, This log message appears: [Assert] Attempted to scroll the collection view to an out-of-bounds item (0) when there are only 0 items in section 0. This will become an assert in a future version. I guess this is the future version when it was decided to assert. You could try to guard the code from being executed: guard indexPath.row < collectionView.numberOfItems(inSection: indexPath.section) else {return}
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jan ’22