CocoaPods trunk is moving to be read-only. Read more on the blog, there are 17 months to go.

GSPasswordInputView 1.0.1

GSPasswordInputView 1.0.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Nov 2015

Maintained by Aren.



  • By
  • Aren

GSPasswordInputView is a wechat payment like password input view.

GSPasswordInputView

Howto Install

Podfile

platform :ios, '7.0'
pod 'GSPasswordInputView'

Usage

  • Storyboard
  Drag an UIView to your storyboard, set its class to GSPasswordInputView.
  That's it!
  • Create from code
  GSPasswordInputView *pwdInputView = [[GSPasswordInputView alloc] initWithFrame:CGRectMake(0, 0, 160, 40)];
  pwdInputView.numberOfDigit = 6;
  [self.view addSubview:pwdInputView];
  • Delegate Implement delegate below to get called when input complete;
  - (void)didFinishEditingWithInputView:(GSPasswordInputView *)anInputView text:(NSString *)aText;

Requirements

  • iOS7.0 (>=)
  • ARC

License

GSPasswordInputView is released under the MIT license. See LICENSE for details.