无法在范围内找到可表示的 uiviewcontroller

发布于 2025-01-11 08:19:45 字数 274 浏览 0 评论 0原文

我的应用程序有一个 WatchKit 扩展,我需要使用手机上应用程序的更新来修改内容视图中的数据。所以我使用下面的代码...但是编译器错误说它可以在范围内找到 UViewControllerRepresentable

struct ContentView: View, UViewControllerRepresentable
  {
  
  
  var body: some View {
    VStack
      {
          ...
      }
  }

I have a WatchKit extension to my app and I need to modify the data in the content view with updates from the app on the phone. So I am using the code below... but the compiler errors out saying it can find UViewControllerRepresentable in scope

struct ContentView: View, UViewControllerRepresentable
  {
  
  
  var body: some View {
    VStack
      {
          ...
      }
  }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜无邪 2025-01-18 08:19:45

UIViewControllerRepresentable 不可用于观看。

https://developer.apple.com/documentation/swiftui/uiviewcontrollerrepresentable

没有需要,因为 WatchKit/WatchOS 没有 UIViewController
https://developer.apple.com/documentation/uikit/uiviewcontroller

SwiftUI View 可用,但你不能使用 UIKitUIViews/UIViewControllers

每当你必须重新设计一个对于 watchOS 兼容版本的 View,您可以将其命名为与 iOS 目标版本相同的名称,并为其指定相同的 init

如果您正确选择目标成员资格,编译器将选择当前目标的版本。

UIViewControllerRepresentable is not available for watch.

https://developer.apple.com/documentation/swiftui/uiviewcontrollerrepresentable

There is no need because WatchKit/WatchOS doesn't have UIViewControllers
https://developer.apple.com/documentation/uikit/uiviewcontroller

SwiftUI Views are available but you can't use UIKit's UIViews/UIViewControllers

Whenever you have to redesign a View for a watchOS compatible version you can name it the same as the iOS target's version and give it the same init.

If you keep the target memberships selected appropriately the compiler will chose the current target's version.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文