我正在尝试像这样分配assessmentStatus

PlaygroundPage.current.assessmentStatus = .pass(message: "Great job!")


但是我不断收到错误

PlaygroundPage has no member assessmentStatus


我已经导入了PlaygroundSupport,像PlaygroundPage.current.liveView = myController这样的语句也可以正常工作。

苹果文档声称assessmentStatus存在:

https://developer.apple.com/library/content/documentation/Xcode/Conceptual/swift_playgrounds_doc_format/XCPlaygroundPage.html

但是单击PlaygroundPage并进入其定义,表明实际上没有成员assessmentStatus,如以下屏幕快照所示:

ios - PlaygroundPage没有成员(member)评估状态-LMLPHP

有人可以帮我排序吗?谢谢!

最佳答案

该功能仅适用于iPad上的Playgrounds app,不适用于Playground中的Xcode。您可以在iPad here上下载该应用程序

以后的编辑:也请参见this文章

10-07 19:51