13.3 C
New York
Tuesday, March 25, 2025

ios – Surroundings objects not being carried over to little one views


I’m creating an iOS app utilizing XCode, and I am having some issues getting an EnvironmentObject to switch accurately between my major view and a toddler view. They’re linked by a NavigationLink within a NavigationStack. Here’s a simplified model of my code that solely incorporates the required code:

struct MainPageView: View {
    @EnvironmentObject var teams: groupManager
    
    var physique: some View {
        NavigationStack {
            // omitted code  
   
            NavigationLink {
                AccountView()
            } label: {
                VStack {
                    if account.username.isEmpty {
                        Picture("default_account_image")
                    } else {
                        account.profilePicture
                    }
                    Textual content("Account")
                }
            }

            // omitted code
        }
    }
}

Styling can also be faraway from the code, so for those who attempt to preview it, it can look actually bizarre. account is one other setting variable, however it’s not associated in any means. The teams object is what I’m having bother with. Once I navigate to AccountView it ought to present me a listing of teams that the person is part of, however for some motive it simply exhibits like this clean field. Right here is the definition of ‘groupManager’:

class groupManager: ObservableObject {
    @Revealed var teams: [Group] = getAllGroups()
}

It’s not an issue with the getAllGroups technique and I’ve checked this with print debugging. It is also not an issue with the AccountView so far as I can inform. If I view the record of teams from AccountView as a substitute of my major view, the record hundreds accurately. Right here is the code for AccountView:

struct AccountView: View {
    @State personal var tab: Int = 0
    @EnvironmentObject var teams: groupManager
    
    var physique: some View {
        VStack {
            Picker("Tabs", choice: $tab) {
                Textual content("Private").tag(0)
                Textual content("Teams").tag(1)
            }
            .pickerStyle(SegmentedPickerStyle())
            
            if tab == 0 {
                Textual content("Exhibiting private view")
                PersonalView()
            } else if tab == 1 {
                Textual content("Exhibiting group view")
                GroupList()
            }
        }
    }
}

The identical teams setting object is handed to the view, and this time it hundreds accurately. When going to the GroupList tab, it accurately shows the record of teams that the person is part of. Right here is an instance photograph of what it ought to appear like:
Preview from XCode of what it is alleged to appear like

Here’s what it seems like once I have a look at it from the primary view as a substitute:
Preview from XCode of what it seems like from the primary view

The final piece of knowledge that I believe (and hope) is related, is what the GroupList view seems like. It is a typical record that I realized find out how to make from the Apple XCode docs, and right here it’s:

struct GroupList: View {
    @EnvironmentObject var teams: groupManager
    
    var physique: some View {
        NavigationSplitView {
            Checklist(teams.teams) {group in
                NavigationLink {
                    GroupRecipeList(group: group)
                } label: {
                    GroupRow(group: group)
                }
                .listRowBackground(Colour(crimson: 0.92, inexperienced: 0.92, blue: 0.92))
            }
            .scrollContentBackground(.hidden)
        } element: {
            Textual content("Choose a bunch")
        }
    }
}

Right here we will see the identical teams setting object. To be clear, this object is handed to the primary view within the app’s entry level for when it’s run not on simulation.

That ought to be all of the background. To date I’ve tried nearly all the pieces I can consider. I attempted making it only a variable outlined in one other file as a substitute of an EnvironmentObject, however I nonetheless had the identical error. I attempted explicitly passing the EnvironmentObject to AccountView within the NavigationLink utilizing .environmentObject() however that did not work both. I additionally tried explicitly passing it to GroupList from AccountView. I’ve tried asking ChatGPT to unravel my issues, however it simply gave me the identical recommendation actually and by no means truly mounted the issue. I am all out of concepts at this level, so I might respect some assist!

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Latest Articles