
iOS UI controls and formatters for entering money, credit card number and expiry date.
Overview: BKMoneyKitiOS is a library that provides UI controls and formatters for entering money, credit card numbers, and expiry dates. It includes classes like BKCardNumberField, BKCardNumberLabel, BKCardNumberFormatter, BKCardExpiryField, and BKCurrencyTextField. It also supports displaying card logo images and provides customization options for formatting and masking card information.
Features:
Installation: To install BKMoneyKitiOS, follow these steps:
Example usage:
let cardNumberField = BKCardNumberField()
cardNumberField.showsCardLogo = true
let cardNumberLabel = BKCardNumberLabel()
cardNumberLabel.cardNumberFormatter.maskingCharacter = "X"
let cardExpiryField = BKCardExpiryField()
let currencyTextField = BKCurrencyTextField()
currencyTextField.numberFormatter.currencyCode = "USD"
Summary: BKMoneyKitiOS is a library that provides convenient UI controls and formatters for handling money, credit card numbers, and expiry dates in iOS applications. It offers features like card number formatting, card logo display, and currency formatting. The library simplifies the process of handling financial inputs and enhances the user experience in applications that require such functionality.
