简体   繁体   中英

SwiftUI - SF Symbols Do Not Render

I'm trying to show a "plus" or "plus.app" sign via the SF Symbols in my code, but the preview to the right shows nothing.

Other symbols do work like "plus.circle", is there a reason why the other symbols aren't working?

Here is my view.

var body: some View {
    NavigationView {
        List(items) { item in
            Text(item.description)
        }
        .navigationBarTitle(Text("Grocery Items"))
        .navigationBarItems(leading:
            PresentationButton(
                Image(systemName: "plus")
                    .imageScale(.large)
                    .padding(),
                destination: ItemDetailView(item: items[0])
            )
        )
    }
}

I expect the output to show the "plus.app" or "plus" symbol, but it shows nothing when I use those symbols.

I had the same problem with the default preview device, as well as iPhone XS simulator.

Changing the preview device to "iPhone XR" solved the issue for me. It's probably a bug and will be fixed in the next releases.

You can change the preview device as below:

#if DEBUG
struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
          .previewDevice(PreviewDevice(rawValue: "iPhone XR"))
    }
}
#endif

Update:

I tried the same with Xcode 11 beta 3 and it seems this issue was fixed.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM