Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经设置了加载 SFsymbol 的条件。
Image(systemname : isShowList ? "ellipsis" : "")
但我收到警告No symbol named ''
No symbol named ''
如何在没有警告的情况下将其设置为空值?
它可能取决于通用布局中需要什么,但可能的变体是
a)有条件地删除图像
if isShowList { Image(systemName : "ellipsis") }
b) 有条件地隐藏图像
Image(systemName : "ellipsis") .opacity(isShowList ? 1.0 : 0.0)