Post

Replies

Boosts

Views

Activity

Reply to Navigation title flickers when tab is changed when used with a List / Form
Summary This is not a bug Closed Feedback Concept TabView needs to be the outermost container. NavigationStack should be in the Tab contents. Fixed Code struct ContentView: View { @State private var selectedTab = TabItem.red var body: some View { TabView(selection: $selectedTab) { ForEach(TabItem.allCases, id: \.self) { tab in Tab(tab.rawValue, systemImage: tab.systemImageName, value: tab) { NavigationStack { List { Text(tab.rawValue) } .navigationTitle(selectedTab.rawValue) } } } } } }
Topic: UI Frameworks SubTopic: SwiftUI
Dec ’25
Reply to #Predicate doesn't work with enum
I really hope this gets addressed in #WWDC25. Using a rawValue, you need to hardcode the rawValue, even the below wouldn't compile. #Predicate<Train> { $0.statusRawValue == Status.onTime.rawValue } Error: Key path cannot refer to enum case 'status' If the intent of SwiftData is to be modern and not expose the constraints of SQLite, then more needs to be done to improve support more swift types. Using a #Predicate seems like a blackbox, it works for simple primitive type comparisons but doesn't even work when trying to compare with something like Status.onTime.rawValue
May ’25
Reply to Need help understanding a piece of logic in a piece of code involving ".background"
dragDetector returns a GeometryReader which is a View You can look at the documentation for GeometryReader and Color.clear, both of them conform to View. I think it will be best to start simple by going through the basics of SwiftUI. There is great documentation / videos on Apple Developer website. Trying to learn SwiftUI by reading through code might not be the best approach, without the proper understanding of the basics of SwiftUI
Topic: Community SubTopic: Apple Developers Tags:
Aug ’24
Reply to MacOs sheet not opening and application stuck
Try to replace TrainingAttendanceView with a simple view (example: Color.red) and see what happens. If the sheet opens then the problem could be with TrainingAttendanceView, begin commenting out code till you isolate the problem. If the sheet doesn't open with a simple view then the problem could be in the parent view presenting it. After isolating the problem create a project with minimum code to reproduce the issue and then post it in the forum so that others can have a look.
Aug ’24
Reply to Updating a Core Data object does not update the SwiftUI view
CoreData Use @FetchRequest to keep CoreData in sync with SwiftUI view https://developer.apple.com/wwdc21/10017?time=581 SwiftData Use Query, to keep SwiftData in sync with your SwiftUI view. Please watch the WWDC videos on SwiftData to see how it is meant to be used with SwiftUI views. Reference: https://developer.apple.com/wwdc23/10154?time=330 https://developer.apple.com/documentation/swiftdata/query https://www.hackingwithswift.com/quick-start/swiftdata/how-to-use-query-to-read-swiftdata-objects-from-swiftui
Aug ’24