在 WatchOS 上启动视图

Posted

技术标签:

【中文标题】在 WatchOS 上启动视图【英文标题】:Starting View on WatchOS 【发布时间】:2021-03-10 08:30:38 【问题描述】:

我正在创建一个 watchOS 应用并希望选择起始视图作为主屏幕的子视图。一位WWDC20 video (time: 13:50) 称其为“分层导航”并展示了一个示例,但没有提供任何代码。

我一直在寻找如何做到这一点,但找不到任何东西。我正在为 watchOS 7+ 完全使用 SwiftUI 构建应用程序。

如何从视图的子级开始?

【问题讨论】:

【参考方案1】:

今天刚好打开SO,发现了这个问题。

如果我理解正确(基于您分享的 wwdc 视频),您想要做的是在您的主视图中打开一个子视图。

让我们根据我假设您想要做的事情来设置一个示例。有一个入口点,我将其命名为HomeView,它托管您的导航视图以及导航链接。您还将有两个视图(仅用于说明目的),我将致电 AViewBView

如果我创建这个新应用 (StraightToDetailsApp),主入口点应如下所示:

import SwiftUI

@main
struct StraightToTheDetailsApp: App 
  var body: some Scene 
    WindowGroup 
      Text("Hello world!")
    
  

让我们添加我们需要的三个新视图:

import SwiftUI

@main
struct StraightToTheDetailsApp: App 
  var body: some Scene 
    WindowGroup 
      // replaced ContentView with HomeView
      HomeView()
    
  


struct HomeView: View 
  var body: some Scene 
    NavigationView 
      ScrollView 
        // specified the navigation hierarchy from home. 
        NavigationLink("Hello A!!!", destination: AView())
        NavigationLink("Greetings B!!!", destination: BView())
      
    
  


// Just made two simple views.
struct AView: View 
  var body: some Scene 
    VStack 
      Text("Hello from A")
    .frame(
        minWidth: 0,
        maxWidth: .infinity,
        minHeight: 0,
        maxHeight: .infinity,
        alignment: .center)
     .background(Color.blue)
  


struct BView: View 
  var body: some Scene 
    VStack 
      Text("Hello from B")
    .frame(
        minWidth: 0,
        maxWidth: .infinity,
        minHeight: 0,
        maxHeight: .infinity,
        alignment: .center)
     .background(Color.blue)
  

如果您现在启动应用程序,您会看到带有两个按钮的主页,点击它会触发应用程序中的导航。

由于您想强制应用直接导航到其中一项,您需要提供可用于绑定变量的标识符,从而自动触发导航。这是什么意思?

// let's create accessors to those links that you can reference from 
// somewhere in your code.
// Perhaps, you have a view model maintaining this state.
enum Details 
  case a
  case b


// And let's adapt home view, with the appropriate state tracking
// the "tag"

struct HomeView: View 
  @State var selectedTag: Details? = nil

  var body: some View 
    NavigationView 
      ScrollView 
        NavigationLink(
          "Hello A!!!",
          destination: AView(),
          tag: Details.a,
          selection: self.$selected)

        NavigationLink(
          "Greetings B!!!",
          destination: BView(),
          tag: Details.b,
          selection: self.$selected)
      
    
  

如果你启动你的应用,它会和以前一样,但现在你可以为那个名为selectedTag的状态变量提供一个值,让它去你想去的任何地方。

struct HomeView: View 
  @State var selectedTag: Details? = .a

  var body: some View 
  // ...
  

现在启动应用程序,应用程序将显示AViewHomeView 堆叠在导航中。

【讨论】:

非常感谢!完美答案! 不用担心,很高兴它成功了 :)

以上是关于在 WatchOS 上启动视图的主要内容,如果未能解决你的问题,请参考以下文章

如何在 WatchOS 中使用背景视图填充整个 Button 区域?

如何检查我的应用程序是不是由 WatchOS 上的 Siri 快捷方式启动?

WatchOS SwiftUI 动画视图调整父级大小

watchOS 2:在初始接口控制器上设置属性

WatchOS 2 应用程序无法在我的框架库未加载的 dyld_fatal_error 的设备上启动:找不到图像

在 watchOS 中,是不是可以显示没有通向根视图的状态栏按钮的视图?