如何在我的macOS SwiftUI应用程序中使用我的自定义代码替换导航标题?

huangapple go评论69阅读模式
英文:

How can I replace the navigation title in my macOS SwiftUI app with my own code?

问题

如何用自己的元素替换navigationTitle

英文:

How can I replace the navigationTitle with my own element?

如何在我的macOS SwiftUI应用程序中使用我的自定义代码替换导航标题?

答案1

得分: 1

  1. 通过将navigationTitle设置为空字符串来隐藏导航标题。
  2. 使用navigation布局放置您自己的工具栏元素。

例如,以下代码...

struct ContentView: View {
    var body: some View {
        Text("ABC")
            .navigationTitle("")
            .toolbar {
                ToolbarItem(placement: .navigation) {
                    Text("这是我的自定义文本!")
                }
        }
    }
}

...实现了以下结果:

如何在我的macOS SwiftUI应用程序中使用我的自定义代码替换导航标题?

英文:

To replace the navigationTitle with your own (presumably) non-text code:

  1. Hide the navigationTitle by setting it to an empty string.
  2. Add your own toolbar elements there with the navigation placement.

For example, this code...

struct ContentView: View {
    var body: some View {
        Text("ABC")
            .navigationTitle("")
            .toolbar {
                ToolbarItem(placement: .navigation) {
                    Text("This is my own text!")
                }
        }
    }
}

...achieves this result:

如何在我的macOS SwiftUI应用程序中使用我的自定义代码替换导航标题?

huangapple
  • 本文由 发表于 2023年1月6日 14:08:21
  • 转载请务必保留本文链接:https://go.coder-hub.com/75027528.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定