美文网首页
Widget 小组件提示 “Please adopt conta

Widget 小组件提示 “Please adopt conta

作者: 高浩浩浩浩浩浩 | 来源:发表于2023-10-24 10:49 被阅读0次

    最近处理小组件适配iOS 17的时候,运行起来提示错误

    "Please adopt containerBackground API"

    这里需要对View配置一个 containerBackground,在iOS 17中新增了这个API

    containerBackground(_:for:)
    

    Sets the container background of the enclosing container using a view.

    这是官方文档Code示例:

    struct ContentView: View {
      var body: some View {
          NavigationStack {
              List {
                  NavigationLink("Blue") {
                      Text("Blue")
                      .containerBackground(.blue.gradient, for: .navigation)
                  }
                  NavigationLink("Red") {
                      Text("Red")
                      .containerBackground(.red.gradient, for: .navigation)
                  }
              }
          }
      }
    }

    相关文章

      网友评论

          本文标题:Widget 小组件提示 “Please adopt conta

          本文链接:https://www.haomeiwen.com/subject/sahsidtx.html