gpt4 book ai didi

swiftui - @Binding 不能用作属性

转载 作者:行者123 更新时间:2023-12-05 08:12:42 25 4
gpt4 key购买 nike

我正在学习有关 SwiftUI 的教程,但遇到了问题

以下是我将一个 bool 值从一个结构 View 绑定(bind)到另一个结构 View 的努力

import SwiftUI
import Foundation
struct BindingTwo: View {

let episod = Episode(name: "MacBreak Weekly", track: "WWDC 2019")
@State private var isPlaying = false
var body: some View {

VStack{

Text(self.episod.name).font(.title).foregroundColor(self.isPlaying ? Color.green : Color.black)

Text(self.episod.track).foregroundColor(.secondary)

PlayButton(isPlaying: isPlaying)
}

}
}

struct PlayButton : View {
*@Binding var isPlaying : Bool* this line is generating the error
var body : some View {
Button(action: {self.isPlaying.toggle()}){
Text("Play")
}
.foregroundColor(Color.white)
.background(Color.black)
.padding(12)
}
}

但是 @Binding 行不断出现以下错误:“Struct 'Binding' cannot be used as an attribute”据我所知这与教程相同,我无法弄清楚我错过了什么,有人以前看过吗?

最佳答案

虽然我没有得到你提到的错误。但是您的代码运行良好,只需更改一下:

PlayButton(isPlaying: self.$isPlaying)

关于swiftui - @Binding 不能用作属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58274988/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com