• Stars
    star
    380
  • Rank 112,766 (Top 3 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created about 10 years ago
  • Updated almost 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

VMaskTextField is a library which create an input mask for iOS.

VMaskTextField

CI Status Version License Platform

An inputmask helps the user with the input by ensuring a predefined format. This can be useful for dates, numerics, phone numbers etc

demo

Usage

@interface VViewController ()

@property (weak,nonatomic) IBOutlet VMaskTextField * maskTextField;

@end

@implementation VViewController

- (void)viewDidLoad{
    //Telephone with Code Area
    self.maskTextField.mask = @"(##) ####-####";
    self.maskTextField.delegate = self;
}

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
   return  [_maskTextField shouldChangeCharactersInRange:range replacementString:string];
}

@end

Features

  • Validating data type
  • Flexible masks
  • Automatic maxlength

Installation

VMaskTextField is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "VMaskTextField"

or copy VMaskTextField.h and VMaskTextField.m to your project folder.

Author

viniciusmo, [email protected]

License

VMaskTextField is available under the MIT license. See the LICENSE file for more info.

More Repositories

1

extract-localizable-string-plugin-xcode

Xcode plugin for quickly creating localized strings
Objective-C
219
star
2

android-text-to-speech

Library that contains the same functionality as Google Translate, it allows you to translate text and speak several languages​​.
Java
67
star
3

keyboard-visibility-event-android

A DSL to handle soft keyboard visibility change event written in Kotlin.
Kotlin
18
star
4

memory-game

Joguinho da memoria para a materia de Jogos para Web - FATEC
JavaScript
12
star
5

flutter_store_review

⭐ Rate on App Store directly in your Flutter app.
Ruby
9
star
6

android-countdown-joda-time

Example of countdown Android.
Java
6
star
7

device-farm

A top level client of aws device farm api to manage your tests 🚀
Ruby
5
star
8

hermes

Aplicativo com interface específica que funciona como intermediário na comunicação entre portadores de necessidades especiais verbal e auditiva e pessoas ouvintes e falantes.
Ruby
4
star
9

fastlane-plugin-flutter_build

Build your flutter project directly from your lane.
Ruby
3
star
10

image-recognition-with-ml-kit

Sample of image recognition with ML Kit.
Kotlin
2
star
11

flutter-clone-rebot

A POC Flutter App ReBot 💄 💋💅
Java
2
star
12

minesweeper-html5

Jogo campo minado para a disciplina de Jogos Digitais para a Web
JavaScript
1
star
13

simple-pong-game-applet

Simple Jogo Pong para a disciplina de Jogos digitais para WEB - Fatec Carapicuiba
Java
1
star
14

programming-challenges-problems

My solutions of book Programming Challeng
C++
1
star
15

spoj-br

Exercícios resolvidos do SPOJ-Brasil
C++
1
star
16

flutter_baroneza

Flutter App that notifies alerts from CPTM/Metro.
Dart
1
star