如何在 Swift 的 UITextField 中限制只有 1 个小数条目用于 iOS8?
How do you limit only 1 decimal entry in a UITextField in Swift for iOS8?
我到处都在寻找这个,但似乎仍然无法让它工作。我有一个带有 UITextField 的简单 iOS 程序,可将华氏温度转换为摄氏温度和开尔文温度。我试图在此 UITextField 中限制只有 1 个小数条目。例如 98.9 可以,但 98..9 不行。
这是我只想限制一位小数的函数。我想要的是,如果输入 1 个小数点,那么它将不允许输入另一个 1,但当然仍然可以在第一个小数点后输入数字。
func farenheitButton(sender: AnyObject)
{
var fVal = self.farenheitTextLabel.text
var cVal = self.celsiusTextLabel.text
var kVal = self.kelvinTextLabel.text
if let fVal = self.farenheitTextLabel.text?.toDouble()
{
var fValx = self.farenheitTextLabel.text
var fDoubleValue : Double = NSString (string: fValx).doubleValue
var fToC = (fDoubleValue - 32) * (5/9) //convert Farenheit to Celsius formula
var fToK = ((fDoubleValue - 32) / (1.8000)) + 273.15 //convert Farenheit to Kelvin formula
//create string from value with a format
var afToC : Double = fToC
var bfToC : String = String(format:"%.4f",afToC)
var afToK : Double = fToK
var bfToK : String = String(format:"%.4f",afToK)
celsiusTextLabel.text = bfToC
kelvinTextLabel.text = bfToK
}
}
您可以设置 UITextField.delegate = self
并使用 textField(textField: UITextField,shouldChangeCharactersInRange range: NSRange,replacementString string: String)
方法来执行您想要的操作。
以下代码不允许您在文本字段中输入超过 1 个小数点。
func textField(textField: UITextField,shouldChangeCharactersInRange range: NSRange,replacementString string: String) -> Bool
{
let countdots = textField.text.componentsSeparatedByString(".").count - 1
if countdots > 0 && string == "."
{
return false
}
return true
}
您应该将 UITextFieldDelegate
添加到 class ViewController
:
class ViewController: UIViewController, UITextFieldDelegate {
...
}
然后
如果您的 @IBOutlet
的名字是 textField
,(它可能看起来像:
@IBOutlet weak var textField: UITextField!
), 然后添加
override func viewDidLoad() {
super.viewDidLoad()
self.textField.delegate = self
// Do any additional setup after loading the view, typically from a nib.
}
之后你可以使用:
func textField(textField: UITextField,shouldChangeCharactersInRange range: NSRange,replacementString string: String) -> Bool
{
let countdots = textField.text.componentsSeparatedByString(".").count - 1
if countdots > 0 || textField.text == "."
{
return false
}
return true
}
您可以使用 UITextField 的这个子类。它使用与上述答案相同的原理,但代码更清晰。
class WMNumberTextField: UITextField, UITextFieldDelegate {
override func awakeFromNib() {
super.awakeFromNib()
delegate = self
}
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
guard let text = text else { return false }
let dots = text.characters.filter { [=10=] == "." }
return dots.count == 0 || string != "."
}
}
我在 swift 3.0.
中使用以下代码限制了 1 个小数点
let inverseSet = CharacterSet(charactersIn:".0123456789").inverted
let components = string.components(separatedBy: inverseSet)
let filtered = components.joined(separator: "")
if (textField.text?.contains("."))!, string.contains(".") {
return false
}
return string == filtered
Swift 3
func textField(_ textField: UITextField,shouldChangeCharactersIn range: NSRange,replacementString string: String) -> Bool
{
let countdots = (textField.text?.components(separatedBy: (".")).count)! - 1
if (countdots > 0 && string == "."){
return false
}
return true
}
Swift 4: 这有效!
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
guard let counter = textField.text?.components(separatedBy: ".") else { return false }
if (counter.count - 1 > 0 && string == ".") { return false }
return true
}
对于swift5 限制文本字段只能输入一位(.)小数。
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
if string == "." {
let countdots = textField.text!.components(separatedBy: ".").count - 1
if countdots == 0 {
return true
} else {
if countdots > 0 && string == "." {
return false
} else {
return true
}
}
}
return true
}
我到处都在寻找这个,但似乎仍然无法让它工作。我有一个带有 UITextField 的简单 iOS 程序,可将华氏温度转换为摄氏温度和开尔文温度。我试图在此 UITextField 中限制只有 1 个小数条目。例如 98.9 可以,但 98..9 不行。
这是我只想限制一位小数的函数。我想要的是,如果输入 1 个小数点,那么它将不允许输入另一个 1,但当然仍然可以在第一个小数点后输入数字。
func farenheitButton(sender: AnyObject)
{
var fVal = self.farenheitTextLabel.text
var cVal = self.celsiusTextLabel.text
var kVal = self.kelvinTextLabel.text
if let fVal = self.farenheitTextLabel.text?.toDouble()
{
var fValx = self.farenheitTextLabel.text
var fDoubleValue : Double = NSString (string: fValx).doubleValue
var fToC = (fDoubleValue - 32) * (5/9) //convert Farenheit to Celsius formula
var fToK = ((fDoubleValue - 32) / (1.8000)) + 273.15 //convert Farenheit to Kelvin formula
//create string from value with a format
var afToC : Double = fToC
var bfToC : String = String(format:"%.4f",afToC)
var afToK : Double = fToK
var bfToK : String = String(format:"%.4f",afToK)
celsiusTextLabel.text = bfToC
kelvinTextLabel.text = bfToK
}
}
您可以设置 UITextField.delegate = self
并使用 textField(textField: UITextField,shouldChangeCharactersInRange range: NSRange,replacementString string: String)
方法来执行您想要的操作。
以下代码不允许您在文本字段中输入超过 1 个小数点。
func textField(textField: UITextField,shouldChangeCharactersInRange range: NSRange,replacementString string: String) -> Bool
{
let countdots = textField.text.componentsSeparatedByString(".").count - 1
if countdots > 0 && string == "."
{
return false
}
return true
}
您应该将 UITextFieldDelegate
添加到 class ViewController
:
class ViewController: UIViewController, UITextFieldDelegate {
...
}
然后
如果您的 @IBOutlet
的名字是 textField
,(它可能看起来像:
@IBOutlet weak var textField: UITextField!
), 然后添加
override func viewDidLoad() {
super.viewDidLoad()
self.textField.delegate = self
// Do any additional setup after loading the view, typically from a nib.
}
之后你可以使用:
func textField(textField: UITextField,shouldChangeCharactersInRange range: NSRange,replacementString string: String) -> Bool
{
let countdots = textField.text.componentsSeparatedByString(".").count - 1
if countdots > 0 || textField.text == "."
{
return false
}
return true
}
您可以使用 UITextField 的这个子类。它使用与上述答案相同的原理,但代码更清晰。
class WMNumberTextField: UITextField, UITextFieldDelegate {
override func awakeFromNib() {
super.awakeFromNib()
delegate = self
}
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
guard let text = text else { return false }
let dots = text.characters.filter { [=10=] == "." }
return dots.count == 0 || string != "."
}
}
我在 swift 3.0.
let inverseSet = CharacterSet(charactersIn:".0123456789").inverted
let components = string.components(separatedBy: inverseSet)
let filtered = components.joined(separator: "")
if (textField.text?.contains("."))!, string.contains(".") {
return false
}
return string == filtered
Swift 3
func textField(_ textField: UITextField,shouldChangeCharactersIn range: NSRange,replacementString string: String) -> Bool
{
let countdots = (textField.text?.components(separatedBy: (".")).count)! - 1
if (countdots > 0 && string == "."){
return false
}
return true
}
Swift 4: 这有效!
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
guard let counter = textField.text?.components(separatedBy: ".") else { return false }
if (counter.count - 1 > 0 && string == ".") { return false }
return true
}
对于swift5 限制文本字段只能输入一位(.)小数。
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
if string == "." {
let countdots = textField.text!.components(separatedBy: ".").count - 1
if countdots == 0 {
return true
} else {
if countdots > 0 && string == "." {
return false
} else {
return true
}
}
}
return true
}