快速数字格式化程序的货币问题

问题描述 投票:-1回答:1

例如,我希望我的textField显示5.000,00,我设法限制了用户可以键入的字符,但是我的货币不起作用。我也是Swift的新手,如何计算这种货币?

func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {

    let formatter = NumberFormatter()
    formatter.numberStyle = .currency
    formatter.allowsFloats = true
    formatter.currencyDecimalSeparator = ","
    formatter.alwaysShowsDecimalSeparator = true
    formatter.locale = Locale(identifier: "pt_BR")
    formatter.currencyCode = "BRL"
    formatter.maximumFractionDigits = 0

    let currentText = textField.text ?? ","
    guard let stringRange = Range(range, in: currentText) else { return false}
    let updatedText = currentText.replacingCharacters(in: stringRange, with: string)

    if let groupingSeparator = formatter.groupingSeparator {

        if string == groupingSeparator {
            return true
        }


        if let textWithoutGroupingSeparator = textField.text?.replacingOccurrences(of: groupingSeparator, with: "") {
            var totalTextWithoutGroupingSeparators = textWithoutGroupingSeparator + string
            if string.isEmpty { // pressed Backspace key
                totalTextWithoutGroupingSeparators.removeLast()
            }
            if let numberWithoutGroupingSeparator = formatter.number(from: totalTextWithoutGroupingSeparators),
                let formattedText = formatter.string(from: numberWithoutGroupingSeparator) {

                textField.text = formattedText
                return false
            }
            return updatedText.count <= 8
        }
    }
    return true
}
swift
1个回答
0
投票

我用一个字符串扩展名解决了这个问题,以前我在视图控制器上使用过一个函数,这样做对我来说就解决了,您只需要更改语言环境就可以使用。

扩展字符串{

// formatting text for currency textField
func currencyInputFormatting() -> String {

    var number: NSNumber!
    let formatter = NumberFormatter()
    formatter.numberStyle = .decimal
    formatter.locale = Locale(identifier: "pt_BR")
    formatter.currencySymbol = ""
    formatter.maximumFractionDigits = 2
    formatter.minimumFractionDigits = 2

    var amountWithPrefix = self

    // remove from String: "$", ".", ","
    let regex = try! NSRegularExpression(pattern: "[^0-9]", options: .caseInsensitive)
    amountWithPrefix = regex.stringByReplacingMatches(in: amountWithPrefix, options: NSRegularExpression.MatchingOptions(rawValue: 0), range: NSMakeRange(0, self.count), withTemplate: "")

    let double = (amountWithPrefix as NSString).doubleValue
    number = NSNumber(value: (double / 100))

    // if first number is 0 or all numbers were deleted
    guard number != 0 as NSNumber else {
        return ""
    }
    print(formatter.string(from: number))
    return formatter.string(from: number)!
}

}

© www.soinside.com 2019 - 2024. All rights reserved.