ZhipingYang / UUKeyboardInputView

It helps some viewes,like button、cell、segment, which cann't respond those inputView as textField or texeView them do.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UUKeyboardInputView

It helps some viewes,like button、cell、segment, which cann't respond those inputView as textField or texeView them do.

Simple application

Flipboard playing multiple GIFs

apply with scrollview

Flipboard playing multiple GIFs

API

+ (void)showBlock:(UUInputViewResultBlock)block;

+ (void)showKeyboardType:(UIKeyboardType)type
                   block:(UUInputViewResultBlock)block;

+ (void)showKeyboardType:(UIKeyboardType)type
                 content:(nullable NSString *)content
                   block:(UUInputViewResultBlock)block;

// more flexible config
+ (void)showKeyboardConfige:(nullable UUInputAccessoryConfige)confige
                      block:(UUInputViewResultBlock)block;

UIKeyboardType

  • UIKeyboardTypeDefault,
  • UIKeyboardTypeNumbersAndPunctuation,
  • UIKeyboardTypeNumberPad,
  • UIKeyboardTypeNamePhonePad ...

Usage

    [UUInputAccessoryView showKeyboardConfige:^(UUInputConfiger * _Nonnull configer) {
        configer.keyboardType = UIKeyboardTypeNumberPad;
        configer.content = @"content";
        configer.backgroundColor = [UIColor colorWithWhite:0 alpha:0.5];

    } block:^(NSString * _Nonnull contentStr) {
        // code
        if (contentStr.length == 0) return ;
        
    }];

Installation

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

pod "UUKeyboardInputView"

Author

XcodeYang, xcodeyang@gmail.com

License

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

About

It helps some viewes,like button、cell、segment, which cann't respond those inputView as textField or texeView them do.

License:MIT License


Languages

Language:Objective-C 93.0%Language:Ruby 7.0%