TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Oct 2017 |
Maintained by XcodeYang.
It helps some viewes,like button、cell、segment, which cann't respond those inputView as textField or texeView them do.
apply with scrollview
+ (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;
[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, [email protected]
UUKeyboardInputView is available under the MIT license. See the LICENSE file for more info.