作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
错误
use of unresolved identifier 'slider'
到了它说的地方
var sliderValue=slider.value
有什么问题吗?
import UIKit
class ViewController: UIViewController {
@IBAction func colorChanger(sender: UISlider) {
// creates variable to hold new color
var newBackgroundColor : UIColor
// creates variable holding the value from slider
var sliderValue = slider.value
// changes the newBackgroundColor variable to new color values.
newBackgroundColor = UIColor(hue: sliderValue, saturation: 0.5, brightness: 0.5, alpha: 0.5)
// changes the background color
self.view.backgroundColor = newBackgroundColor }
最佳答案
据我(或 Swift ;-))所知,您的代码中没有定义 slider
属性。
相反,您的方法中有一个名为 sender
的参数,它是一个 UISlider
,因此请尝试使用它。
var sliderValue = sender.value
或
将sender
重命名为slider
这是一种实现方法(在 @leo-dabus 的帮助下)。我也冒昧地清理了你的代码,抱歉:-)
import UIKit
class ViewController: UIViewController {
@IBAction func colorChanger(sender: UISlider) {
// creates variable holding the value from slider
let sliderValue = CGFloat(sender.value)
// changes the newBackgroundColor variable to new color values.
let newBackgroundColor = UIColor(hue: sliderValue, saturation: 0.5, brightness: 0.5, alpha: 0.5)
// changes the background color
view.backgroundColor = newBackgroundColor
}
关于swift - "use of unresolved identifier"环球银行金融电信协会,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35099696/
我是一名优秀的程序员,十分优秀!