Post

Replies

Boosts

Views

Activity

Reply to Navigation: update multiple times per frame
Maybe this helps anyone: I was running into this issue and at least found one thing in my code causing this. I had ViewModels that were handed over to the detail view called by NavigationLink(value:) In the Detail View those ViewModel were @ObservedObject var someViewModel : SomeViewModel thus making SwiftUI rerender and recreate that ViewModel in an infinite loop changing that to a StateObject: @StateObject var someViewModel : SomeViewModel helped (in that special case)
Apr ’23
Reply to Can't distribute app to Testflight with Xcode 15 beta 2
seems like you can't. Even if it says: Xcode 15 beta 5 enables you to develop, test, and distribute apps for Apple platforms I had the same error for beta 5 for a couple of days. Now you can at least upload (and get your build into Testflight) but you still can not distribute: New apps and app updates must be created with the public (GM) versions of Xcode 11 (or newer) and the iOS, macOS, watchOS, and tvOS SDKs. Apps created with beta versions are not allowed.
Jul ’23
Reply to String Catalog does not work with deployed App
I had some hope when it says in the download section: Xcode 15 beta 5 enables you to develop, test, and distribute apps for Apple platforms In fact, if you use Xcode 15 localization from String Catalog works in the distributed app. But only on Testflight. Since you still can not distribute your app, even if it says so: New apps and app updates must be created with the public (GM) versions of Xcode 11 (or newer) and the iOS, macOS, watchOS, and tvOS SDKs. Apps created with beta versions are not allowed. Seems like I am stuck on updates for the summer until Xcode 15 reaches GM status.
Jul ’23