Post

Replies

Boosts

Views

Activity

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
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 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 Xamarin forms App tracking privacy policies
I'm not familiar with Xamarin so I'm not sure if you're talking about a Xamarin specific string needed in Info.plist or the general NSUserTrackingUsageDescription key. That said, you can use trackingAuthorizationStatus to check the current status and go from there. See information under 3 on this page. for more information.
Jun ’21
Reply to Find My unable to connect to server
No issues here. Perhaps there’s an intermittent outage of the servers? That said, some additional things you can try are: Confirm it’s not your internet connection. Does this happen on WiFi, cellular, or both? See if it has to do with the new private relay service by disabling it (double check if the toggle under cellular is disabled as well when you disable it under iCloud) Check if you have similar issues on another device, and/or another device that runs a production version of iOS Ans of course, if the issue persist, file a bug report via Feedback Assistant.
Jun ’21
Reply to Is iOS14.5 ATT prompt enforcement device agnostic ?
From the FAQ on this page: If a user provides permission for tracking via a separate process on our website, but declines permission in the app tracking transparency prompt, can I track that user across apps and websites owned by other companies? Developers must get permission via the app tracking transparency prompt for data that’s collected in the app and used for tracking. Data collected separately, outside of the app and not related to the app, is not in scope. That said, there’s also this: If tracking occurs within a webview inside an app, do I need to use the AppTrackingTransparency prompt? Yes. If you are using a webview for app functionality, it should be treated the same way as native functionality in your app, unless you are enabling the user to navigate the open web.
Jun ’21