@State无法在iPad Swift Playgrounds上运行



我正试图在我的iPad上使用SwiftUI和Swift Playgrounds。下面的视图最初渲染良好,但不幸的是,当@State更改时,视图不会更新,就像在我的Mac上一样。在小边栏中,我可以看到闭包确实被执行了。。。

我正在使用最新的非测试版。

import SwiftUI
import PlaygroundSupport
struct ContentView: View {
    @State private var tapCount = 0
    var body: some View {
        Button("Tap count: (tapCount)") {
            tapCount += 1
        }
    }
}
PlaygroundPage.current.setLiveView(ContentView())

谢谢。

请参阅https://developer.apple.com/forums/thread/677361.Enable Results应关闭。

相关内容

  • 没有找到相关文章

最新更新