菜鸟教程小白 发表于 2022-12-13 05:24:51

ios - 如何在 SwiftUI 的 NavigationView 中放置 Logo ?


                                            <p><p>我正在尝试在应用的顶部使用 Logo 图像而不是 NavigationView 标题。找不到在 NavigationView 中使用图像的任何文档。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><h2>iOS 14+</h2>
<p>从 iOS 14 开始,您可以使用 <code>principal</code> 位置创建 <code>ToolbarItem</code>:</p>
<pre><code>struct ContentView: View {
    var body: some View {
      NavigationView {
            Text(&#34;Test&#34;)
                .toolbar {
                  ToolbarItem(placement: .principal) {
                        Image(systemName: &#34;ellipsis.circle&#34;)
                  }
                }
      }
    }
}
</code></pre>
<p>见 <a href="https://developer.apple.com/documentation/swiftui/toolbaritemplacement" rel="noreferrer noopener nofollow"><code>ToolbarItemPlacement</code> documentation</a>更多<em>展示位置</em>。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 SwiftUI 的 NavigationView 中放置 Logo ?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/56546213/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/56546213/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 SwiftUI 的 NavigationView 中放置 Logo ?