Post

Replies

Boosts

Views

Activity

Reply to Enrollment to Developer Program - No Contact Concerns
Apple say enrollment can take unto 24 hours, If you haven’t received a membership confirmation within 24 hours of your purchase, contact them. Make sure to include your Enrollment ID with your support request. Personally I have had no issue with Apple, it can be hit and miss sometimes when submitting an app or contacting them it can be very quick sometimes upto 48 hours in my case. source: apple.com
Jun ’24
Reply to Hiding chevron from list, SwiftUI
Since ZStack stacks views on top of each other you can take advantage of that! Place a Text view on top of NavigationLink and replace Text view in the body of NavigationLink with an EmptyView List(items, id: \.self) { item in ZStack(alignment: .leading) { Text(item.name) NavigationLink(destination: Text(item.name)) { EmptyView() } .opacity(0.0) } }
Jun ’24
Reply to Privacy Policy URL
You could add a link to you settings page. Link | Apple Docs Link("View Our Terms of Service", destination: URL(string: "https://www.example.com/TOS.html")!) Link("Visit Our Site", destination: URL(string: "https://www.example.com")!) .environment(\.openURL, OpenURLAction { url in print("Open \(url)") return .handled }) If you are using Subscriptions or In App Purchases you could also display this link on the product page.
Jun ’24