Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/istsest/CurrencyNumericTextField

Currency, numeric TextField and Label for iOS
https://github.com/istsest/CurrencyNumericTextField

Last synced: 3 months ago
JSON representation

Currency, numeric TextField and Label for iOS

Awesome Lists containing this project

README

        

Cureency / Numeric TextField and Label
==========================

![Alt text](/main.png)



numericField1.currencyPrefix = @"$";
numericField1.text = @"12345";
numericField1.decimalCount = 2;
[numericField1 becomeFirstResponder];

numericField2.currencyPrefix = @"\\";
numericField2.text = @"1085";

numericLabel.text = @"1085";
numericLabel.currencyPrefix = @"\\";

numericLabel.text = [NSString stringWithFormat:@"%d", (int)([numericField1.numericString doubleValue] * [numericField2.numericString doubleValue])];