Post

Replies

Boosts

Views

Activity

Reply to Issues with tvOS 14.7 appears to have bricked my Apple TV
How do I resolve this There are a few options in order of difficulty: See if you can connect to it through Xcode/Configurator and restore back to 14.6 from there Trigger recovery mode (this will only erase and start 14.7 from scratch) by repeatedly unplugging and plugging power back in Contact support and explain the situation and that you’d like to revert back to 14.6 what caused it Could be anything, comes with the territory of dealing with betas.
Jun ’21
Reply to My app iAccounts is gone.
Sounds like you’re having trouble with an app. This is the developer forum, meant for developers to help each other with questions regarding developing apps. Your question might be better fitted for the regular Apple forum, which you can find here. That said, you might have better luck contacting the developer of the app that’s causing issues or by contacting Apple support if you have issues with your Apple ID.
Jun ’21
Reply to Can't get NavigationLinks to work with Menu control in iOS 14
NavigationLink needs to be within the NavigationView hierarchy so you’ll need to be a bit creative with this. Something like: struct YourView: View { @State private var isActive = false @State private var goTo = “” var body: some View { NavigationView { etc. } .background( NavigationLink(destination: Text(self.goTo), isActive: $isActive) { 										EmptyView() 								}) } } And then for the toolbar all you need to do is: .toolbar {          ToolbarItem(placement: .navigationBarLeading) {            Menu {          Button("Go to 1") { 										 self.goTo = "Destination 1" 										 self.isActive = true 								 } 								 Button("Go to 2") { 										 self.goTo = "Destination 2" 										 self.isActive = true 								 }         }            label: {             Label("Add", systemImage: "plus")           }         }		 } Can’t get the indentation right for your code, for some reason the editor doesn’t play nice, but I think you’ll be able to figure it out.
Jan ’21