1
SAConfettiViewフレームワークをXcodeプレイグラウンドで動作させようとしています。しかし、私が上のコードを使用すると、色とりどりアニメーションが表示されません。XcodeプレイグラウンドでSAConfettiViewを実行できません
import UIKit
import PlaygroundSupport
var view = UIView(frame: UIScreen.main.bounds)
var confettiView: SAConfettiView!
confettiView = SAConfettiView(frame: view.bounds)
confettiView.type = .Star
view.addSubview(confettiView)
confettiView.startConfetti()
view.backgroundColor = .red
PlaygroundPage.current.liveView = view
PlaygroundPage.current.needsIndefiniteExecution = true
私は間違っていますか?