mirror of
https://github.com/zhigang1992/RETableViewManager.git
synced 2026-06-10 07:20:40 +08:00
89 lines
3.3 KiB
Markdown
89 lines
3.3 KiB
Markdown
# REFormattedNumberField
|
|
|
|
UITextField subclass that allows numeric input in a predefined format.
|
|
|
|

|
|
|
|
## Requirements
|
|
* Xcode 4.5 or higher
|
|
* Apple LLVM compiler
|
|
* iOS 5.0 or higher
|
|
* ARC
|
|
|
|
## Demo
|
|
|
|
Build and run the `REFormattedNumberFieldExample` project in Xcode to see `REFormattedNumberField` in action.
|
|
|
|
## Installation
|
|
|
|
### via CocoaPods
|
|
|
|
The recommended approach for installating REFormattedNumberField is via the [CocoaPods](http://cocoapods.org/) package manager, as it provides flexible dependency management and dead simple installation.
|
|
|
|
Install CocoaPods if not already available:
|
|
|
|
``` bash
|
|
$ [sudo] gem install cocoapods
|
|
$ pod setup
|
|
```
|
|
|
|
Edit your Podfile and add REFormattedNumberField:
|
|
|
|
``` bash
|
|
$ edit Podfile
|
|
platform :ios, '5.0'
|
|
pod 'REFormattedNumberField', '~> 1.0.2'
|
|
```
|
|
|
|
Install into your Xcode project:
|
|
|
|
``` bash
|
|
$ pod install
|
|
```
|
|
|
|
### Simple Install
|
|
|
|
All you need to do is drop `REFormattedNumberField` files into your project, and add `#include "REFormattedNumberField.h"` to the top of classes that will use it.
|
|
|
|
## Example Usage
|
|
|
|
Pretty much all you need is just to specify `format` NSString, where `X` are digits and all other characters are separators.
|
|
|
|
``` objective-c
|
|
REFormattedNumberField *phoneField1 = [[REFormattedNumberField alloc] initWithFrame:CGRectMake(20, 20, 280, 30)];
|
|
phoneField1.format = @"(XXX) XXX-XXXX";
|
|
[self.view addSubview:phoneField1];
|
|
|
|
REFormattedNumberField *phoneField2 = [[REFormattedNumberField alloc] initWithFrame:CGRectMake(20, 80, 280, 30)];
|
|
phoneField2.format = @"+X (XXX) XXX-XXXX";
|
|
[self.view addSubview:phoneField2];
|
|
|
|
REFormattedNumberField *ccField = [[REFormattedNumberField alloc] initWithFrame:CGRectMake(20, 140, 280, 30)];
|
|
ccField.format = @"XXXX XXXX XXXX XXXX";
|
|
[self.view addSubview:ccField];
|
|
|
|
REFormattedNumberField *ccExpirationField = [[REFormattedNumberField alloc] initWithFrame:CGRectMake(20, 200, 280, 30)];
|
|
ccExpirationField.format = @"XX/XX";
|
|
[self.view addSubview:ccExpirationField];
|
|
```
|
|
|
|
## Contact
|
|
|
|
Roman Efimov
|
|
|
|
- https://github.com/romaonthego
|
|
- https://twitter.com/romaonthego
|
|
- romefimov@gmail.com
|
|
|
|
## License
|
|
|
|
REFormattedNumberField is available under the MIT license.
|
|
|
|
Copyright © 2013 Roman Efimov.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|