Posts

Post not yet marked as solved
7 Replies
2.9k Views
Screenshots taken within Simulator 10 now mask out the curved corners and "notch" with transparency, at least on the XS Max simulator.This creates an issue because App Store Connect rejects any screenshots with transparency. This creates problems because either part of the screenshot is lost behind the "notch" if one adds a black background to the PNG, or the only way to upload full screenshots is by taking them from a real XS Max (not an option for many developers because the price is so high).
Posted
by afruitpie.
Last updated
.
Post not yet marked as solved
0 Replies
1.1k Views
Hello,For some reason my NavigationLinks are only working on long press as of updating to Xcode 11.4.1. Here's a snippet of my view:struct MainView: View { @EnvironmentObject var user: UserObservable var body: some View { VStack { NavigationView { List(user.items, id: \.self) { item in NavigationLink(destination: itemView(item: item)) { Text(item.name) } } .navigationBarTitle("\(user.displayName)'s items") .navigationBarItems(leading: AddItemViewButton().environmentObject(user), trailing: MainViewActionSheet().environmentObject(user)) } } } }Quick tapping on the links doesn't do anything, but pressing and holding then releasing works as normal. I've also asked this on StackOverflow: https://stackoverflow.com/questions/61262352/navigationlink-only-works-on-long-press-swiftuiAnyone else having this issue or know of a fix? Thank you!
Posted
by afruitpie.
Last updated
.