1
我正在嘗試使SAConfettiView框架在Xcode遊樂場中工作。雖然,當我使用上面的代碼五彩紙屑動畫沒有出現。無法在Xcode Playgrounds上運行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
我在做什麼錯?