LEAmountInputView
是一个受到 Square 设计启发的金额输入视图。
LEAmountInputView 可通过 CocoaPods 获取。要安装它,只需在 Podfile 中添加以下行
pod "LEAmountInputView"
查看 LEAmountInputViewDemo
项目以获取示例用法。
#import "LEAmountInputView.h"
LEAmountInputView *amountInputView = [[LEAmountInputView alloc] initWithFrame:self.view.frame numberStyle:NSNumberFormatterCurrencyStyle];
[self.view addSubview:amountInputView];
如果您想独立使用 textField 与数字键盘作为输入视图,请使用 LEAmountInputTextField
子类。
完全欢迎贡献。
LEAmountInputView 在 MIT 许可下可用。有关更多信息,请参阅 LICENSE 文件。