时间:2021-06-17 09:18:37 | 栏目:iOS代码 | 点击:次
在开始之前,我们先来了解一个概念 属性观测器(Property Observers):
属性观察器监控和响应属性值的变化,每次属性被设置值的时候都会调用属性观察器,甚至新的值和现在的值相同的时候也不例外。
可以为属性添加如下的一个或全部观察器:
接下来开始我们的教程,先展示一下最终效果:
首先声明一个发送按钮:
sendButton = UIButton()
sendButton.frame = CGRect(x: 40, y: 100, width: view.bounds.width - 80, height: 40)
sendButton.backgroundColor = UIColor.redColor()
sendButton.setTitleColor(UIColor.whiteColor(), forState: .Normal)
sendButton.setTitle("获取验证码", forState: .Normal)
sendButton.addTarget(self, action: "sendButtonClick:", forControlEvents: .TouchUpInside)
self.view.addSubview(sendButton)
}
if newValue <= 0 {
sendButton.setTitle("重新获取验证码", forState: .Normal)
isCounting = false
}
}
}
倒计时的功能我们用NSTimer实现,先声明一个NSTimer实例:
remainingSeconds = 10
sendButton.backgroundColor = UIColor.grayColor()
} else {
countdownTimer?.invalidate()
countdownTimer = nil
sendButton.backgroundColor = UIColor.redColor()
}
sendButton.enabled = !newValue
}
}
此外我们还设置了倒计时的时间(这里为了演示时间设置为5秒)和发送按钮在不同isCounting状态下的样式(这里调整了背景色)和是否可点击。
最后实现sendButtonClick:方法,这个方法在点击sendButton时调用: