let firstFrame = CGRect(x: 160, y: 240, width: 100, height: 150)
let firstView = UIView(frame: firstFrame)
firstView.backgroundColor = UIColor.blueColor()
view.addSubview(firstView)
let secondFrame = CGRect(x: 20, y: 30, width: 50, height: 50)
let secondView = UIView(frame: secondFrame)
secondView.backgroundColor = UIColor.greenColor()
view.addSubview(secondView)
這是上面的代碼問題,我在swift3中改變背景顏色的視圖的問題。我在xcode編譯器中得到的錯誤是「無法調用非函數類型'UIColor'的值」。任何人都可以幫助我解決這個問題。有沒有爲backgroundColor抓取顏色的函數?如何在swift3中添加顏色到視圖?
您可以通過⌘點擊符號(例如在'UIColor'上)輕鬆解決這些錯誤。 – vadian