It helps some viewes,like button、cell、segment, which cann't respond those inputView as textField or texeView them do.
Flipboard playing multiple GIFs
apply with scrollview
Flipboard playing multiple GIFs
+ (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;
- UIKeyboardTypeDefault,
- UIKeyboardTypeNumbersAndPunctuation,
- UIKeyboardTypeNumberPad,
- UIKeyboardTypeNamePhonePad ...
[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 ; }];
UUKeyboardInputView is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "UUKeyboardInputView"
XcodeYang, xcodeyang@gmail.com
UUKeyboardInputView is available under the MIT license. See the LICENSE file for more info.