我想在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")
}
}
答案 0 :(得分:3)
你的类有颜色作为静态变量,就像一个类变量,它是let,这意味着它是不可变的常量。如果您希望它可以修改,您需要将其更改为var。因此,您无法从实例访问它。我建议你把它改成实例变量,这样可以在颜色变化时轻松进行绘图调用。
你可以这样做,
class GradientColorView : UIView {
var colors : NSArray = NSArray() {
didSet {
setNeedsDisplay()
}
}
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")
}
}
然后你可以从gradientView的实例中更新颜色,这将再次重绘它,
let gradientView = GradientColorView(frame: CGRectMake(0, 0, 200, 200))
gradientView.colors = [UIColor.redColor(), UIColor.orangeColor(), UIColor.purpleColor()]