let formatter = CardNumberFormatter()
formatter.formatString("1234 5678 1234 5678")
// => "1234 5678 1234 5678"
let formatter = CardExpirationDateFormatter()
formatter.formatString("0119")
// => 01/19
使用reverse
将格式化文本返回到原始形式。
let formatter = CardExpirationDateFormatter()
formatter.formatString("01/19", reverse:true)
// => 0119
Formatter可以通过CocoaPods获得。要安装它,只需将以下行添加到您的Podfile中
pod 'Formatter'
Formatter在MIT许可证下可用。有关更多信息,请参阅LICENSE文件。
Elvis Nuñez,@3lvis