I dragged two of my version 2.0 custom symbols into the Custom Symbols directory in the Library of SF Symbols 3 Beta. The first symbol was fine. The second symbol caused the app to crash. Now it crashes every time I tap Custom Symbols.
I tried deleting the app and reinstalling but the crash continues to happen. Is there something else I need to delete to get it to work again?
Post not yet marked as solved
The iOS 15 UITabBar is using filled SFSymbols, although I had specified outlined symbols!
Is it possible to get the UITabBar to behave like in iOS 14 and displaying the outlined symbols like intended?
TabView {
ArticleListView(articles: model.calls, title: "...").tabItem {
Text("Calls")
Image(systemName: "doc.append")
}
ArticleListView(articles: model.news, title: "...").tabItem {
Text("News")
Image(systemName: "newspaper")
}
ArticleListView(articles: model.events, title: "...").tabItem {
Text("Events")
Image(systemName: "calendar")
}
MoreView().tabItem {
Text("More")
Image(systemName: "ellipsis")
}
}
I'm having issues where symbols created using the 3.0 template won't render correctly in Xcode 13.
The symbols look fine in the SF Symbols app, but when I import into Xcode, the symbol is not placed appropriately in the symbol view (it may only show a zoomed-in view of the bottom left part of the symbol, or the symbol won't be in the symbol view at all).
EDIT: Images in comment/answer below.
EDIT2: To clarify, I'm referring to custom symbols.
How can I resolve this issue? Anyone able to point me in the right direction?
Thanks!