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.
我在 Swift UI 代码中遇到错误 1)协议类型“任何”不能符合“视图”,因为只有具体类型才能符合协议 2)“文本”类型的值没有成员“颜色”
任何人都可以找到解决方案吗?
没有这样的修饰符color()。使用foregroundColor():
color()
foregroundColor()
Text("Hello world") .foregroundColor(.red)