Post

Replies

Boosts

Views

Activity

Comment on App crashes on launch for iOS 12 users after App Store release (Xcode 16.4) — BKSProcessErrorDomain bootstrap-failed
Check out the comments of @App Store Connect Engineer’s reply above. They installed a fix so new uploaded builds will work. Others and I can confirm it does. For me deployment target 12.0 works on my iPhone 5s with App Store Release build (didn’t test builds for internal or development testing). Note it does not work if you install an .ipa locally, you need to upload the build for the fix to work.
Apr ’26
Comment on iOS 14 .onAppear() is called on DISappear instead of appear
I recommend not to go back to using UIKit. There is an interesting approach here. The solution is to use a model class that conforms to ObservableObject, and use @Published variables in the NavigationLink selection. Add willSet/didSet to these variables, and you will know when a selection was made. willSet/didSet do not work on @State variables so using @Published variables does the trick. A similar approach is also taken on this sample code by Apple.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jul ’22
Comment on App crashes on launch for iOS 12 users after App Store release (Xcode 16.4) — BKSProcessErrorDomain bootstrap-failed
Check out the comments of @App Store Connect Engineer’s reply above. They installed a fix so new uploaded builds will work. Others and I can confirm it does. For me deployment target 12.0 works on my iPhone 5s with App Store Release build (didn’t test builds for internal or development testing). Note it does not work if you install an .ipa locally, you need to upload the build for the fix to work.
Replies
Boosts
Views
Activity
Apr ’26
Comment on App crashes on launch for iOS 12 users after App Store release (Xcode 16.4) — BKSProcessErrorDomain bootstrap-failed
Thanks a lot App Store Connect team. We will increase the target in the near future to avoid such issues.
Replies
Boosts
Views
Activity
Apr ’26
Comment on iOS 14 .onAppear() is called on DISappear instead of appear
I recommend not to go back to using UIKit. There is an interesting approach here. The solution is to use a model class that conforms to ObservableObject, and use @Published variables in the NavigationLink selection. Add willSet/didSet to these variables, and you will know when a selection was made. willSet/didSet do not work on @State variables so using @Published variables does the trick. A similar approach is also taken on this sample code by Apple.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’22
Comment on iOS 14 .onAppear() is called on DISappear instead of appear
But what if we want a column-style navigationView?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jun ’22