Preguntas etiquetadas con xcode11.2

47
¿Por qué mi aplicación SwiftUI se bloquea cuando navego hacia atrás después de colocar un `NavigationLink` dentro de un` navigationBarItems` en un `NavigationView`?

Ejemplo reproducible mínimo (Xcode 11.2 beta, esto funciona en Xcode 11.1): struct Parent: View { var body: some View { NavigationView { Text("Hello World") .navigationBarItems( trailing: NavigationLink(destination: Child(), label: { Text("Next") }) ) } } } struct Child: View {...

13
Advertencia de IconRenderer en Xcode 11.2

Acabo de crear una nueva aplicación iOS Single View e intento construirla y ejecutarla. Recibí la advertencia de la siguiente manera: [Renderer] IconRenderer: HorizontalStretchPadding (18.000000, 18.000000) is larger than the image size (34.000000, 54.000000). Image will now use the center column...