0
我想將swift中的顏色數組傳遞給drawRect,我該怎麼做? (我得到了很多錯誤..)將變量傳遞到swift中的drawRect
class GradientColorView : UIView {
static let colors : NSArray = NSArray()
override init(frame: CGRect) {
super.init(frame: frame)
}
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
class func initWithColors(colors :NSArray) {
}
override func drawRect(rect: CGRect) {
println(self.colors)
println("drawRect has updated the view")
}
}
非常感謝你的人,你解決了我這個問題,我也學到了一些新東西! –