码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • SwiftUI 导航设置


    文章目录

    • 一、导航跳转
    • 二、导航设置
    • 三、Present跳转(模态跳转)
    • 四、返回页面

    一、导航跳转

    • 页面A
    import SwiftUI
    
    struct NavJumpAView: View {
        
        @State var isNavPush = false
        
        var body: some View {
            NavigationView {
                VStack {
                    NavigationLink(isActive: $isNavPush) {
                        NavJumpBView()
                    } label: {
                    }
                    
                    Button {
                        isNavPush = true
                    } label: {
                        Text("导航跳转")
                    }
                }
                .navigationBarTitle("页面A")
                    .padding()
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 页面B
    
    struct NavJumpBView: View {
        
        @State var isNavPush = false
        
        var body: some View {
            NavigationView {
                VStack {
                    Image(systemName: "globe")
                        .imageScale(.large)
                        .foregroundColor(.accentColor)
                    Text("Hello, world!")
                }
                .padding()
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    二、导航设置

    struct NavJumpBView: View {
        @Environment(\.presentationMode) var presentationMode
        
        var body: some View {
            VStack {
                Image(systemName: "globe")
                    .imageScale(.large)
                    .foregroundColor(.accentColor)
                Text("Hello, world!")
            }
            .navigationBarTitle("页面B", displayMode: .inline) // 设置标题displayMode,默认的是:automatic(大标题)
            .navigationBarBackButtonHidden(true) // 隐藏系统的导航返回按钮
            .navigationBarItems(leading: Button(action: {// 自定义导航的返回按钮
                presentationMode.wrappedValue.dismiss() // 返回上级页面
            }, label: {
                if let resBundlePath = Bundle.main.path(forResource: "CommonResource", ofType: "bundle"),
                   let resBundle = Bundle(path: resBundlePath) {
                    Image("arrow_left_dark@2x", bundle: resBundle).background(Color.red) // 导航返回按钮图标
                    Text("Back")
                } else {
                    Text("Back")
                }
            }))
            .padding()
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    在这里插入图片描述

    三、Present跳转(模态跳转)

    
    struct NavJumpAView: View {
        
        @Environment(\.presentationMode) var presentationMode
        
        @State var isNavPush = false
        @State var isPresent = false
        
        var body: some View {
            NavigationView {
                VStack {
                    NavigationLink(isActive: $isNavPush) {
                        NavJumpBView()
                    } label: {
                    }
                    
                    Button {
                        isNavPush = true
                    } label: {
                        Text("导航跳转")
                    }
                    Spacer(minLength: 5).frame(height: 15)
                    Button {
                        isPresent = true
                    } label: {
                        Text("模态跳转")
                    }
                }
                .navigationBarTitle("页面A", displayMode: .inline)
                .sheet(isPresented: $isPresent) {
                    NavJumpBView()
                }
                .navigationBarItems(leading: Button(action: {
                    presentationMode.wrappedValue.dismiss()
                }, label: {
                    Text("Back").foregroundColor(.black)
                }))
                    .padding()
                    
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42

    跳转全屏

    // 只需要将上面的 “ sheet”替换成“ fullScreenCover”的方式就可以了
    .fullScreenCover(isPresented: $isPresent, content: {
          PresentB()
      })
    
    • 1
    • 2
    • 3
    • 4

    四、返回页面

    @Environment(\.presentationMode) var presentationMode
    
    presentationMode.wrappedValue.dismiss() // 返回上级页面
    
    • 1
    • 2
    • 3
  • 相关阅读:
    技术贴 | Rocksdb 中 Memtable 源码解析
    【组合数学 隔板法 容斥原理】放球问题
    一文搞懂Vue的MVVM模式与双向绑定
    JVM面试重点-1
    基于springboot实现大学生社团活动平台项目【项目源码+论文说明】
    uniapp——list列表分页,数据是rows
    快去复习吧+++常用算法及参考算法 递推法++穷举法++排序(冒泡、选择)++查找(顺序、折半)++字符串处理++方程求根++无穷级数求和
    Nginx+Keepalived+LVS集群实战
    登福布斯小企业推荐邮箱供应商榜单:高效沟通,轻松管理
    【Apache Camel】基础知识
  • 原文地址:https://blog.csdn.net/guoxulieying/article/details/132970715
  • 最新文章
  • 【JVM】编译执行与解释执行的区别是什么?JVM 使用哪种方式?
    用 Hashids 优雅解决 C 端自增 ID 暴露问题
    V8引擎 精品漫游指南--Ignition篇(上) 指令 栈帧 槽位 调用约定 内存布局 基础内容
    LLVM Pass快速入门(四):代码插桩
    milkup:桌面端 markdown AI续写和即时渲染
    基于项目工程构建SBOM(软件物料清单)的研究
    鸿蒙应用开发UI基础第二节:鸿蒙应用程序框架核心解析与实操
    .NET 中如何快速实现 List 集合去重?
    扣子Coze实战:从0到1打造抖音+小红书热点监控智能体
    浅谈数据访问层
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
小工具 小游戏
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1

京公网安备 11010502049817号