• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

iOS 数字键盘,能够打开文本键盘

[复制链接]
菜鸟教程小白 发表于 2022-12-11 18:55:12 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有一个文本字段,我想在用户开始输入时使用这样的键盘:

enter image description here

也请观看此视频:https://youtu.be/iU_jocny3N0

正如您在此视频中看到的,有一个“ABC”键可帮助用户从数字键盘切换到文本。并且当在文本中按“123”时,键盘会从文本切换到数字键盘。我想知道他们是怎么做到的?

我发现的唯一解决方案是向键盘添加 subview ,如下所述:

Adding Done Button to Only Number Pad Keyboard on iPhone

但是当用户使用自定义键盘时,这种方式可能不起作用。也不适用于从文本切换到数字键盘。

或者作为另一种解决方案,我知道 accessoryInputView 但这不像视频。它在键盘上方添加了一个工具栏。

有人知道此视频中使用的解决方案吗?



Best Answer-推荐答案


我在键盘上添加了逗号按钮,

Keyboard 也是一个简单的 UIView,其中包含 Controls

注意:这是旧代码在我的旧项目中运行 未在新项目中测试

- (void) keyboardWillShowNSNotification *)note {
    // create custom button

    dispatch_async(dispatch_get_main_queue(), ^{
        // Some code
        UITextField *txt = (UITextField *)[self.view findFirstResponder];
        if (txt.keyboardType == UIKeyboardTypeDecimalPad) {
            UIButton * btnComma = [UIButton buttonWithType:UIButtonTypeCustom];
            [btnComma setTag:15000];

            UIView* keyboard = [self findKeyboard];

//            btnComma.frame = CGRectMake(0, 162, 126, 54);

            btnComma.frame = [self findKeySizeForView:keyboard];







            if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0")) {
                [btnComma setTitleEdgeInsets:UIEdgeInsetsMake(0, 0, 20, 0)];
            }

            [btnComma setBackgroundColor:[UIColor colorWithHexString"CBD0D6"]];
            btnComma.adjustsImageWhenHighlighted = NO;
            [btnComma setTitle"." forState:UIControlStateNormal];
            [btnComma setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
            [btnComma.titleLabel setFont:[UIFont systemFontOfSize:35.0f]];
            [btnComma addTarget:self actionselector(commaBtnTapped) forControlEvents:UIControlEventTouchUpInside];

            [keyboard addSubview:btnComma];
            btnComma = nil;
        }
    });
}
- (UIView *) viewWithPrefixNSString *)prefix inViewUIView *)view {
    for (UIView *subview in view.subviews) {
        if ([[subview description] hasPrefix:prefix]) {
            return subview;
        }
    }
    return nil;
}

这个从UIWindow中寻找键盘的方法

- (UIView *) findKeyboard {
    for (UIWindow* window in [UIApplication sharedApplication].windows) {
        UIView *inputSetContainer = [self viewWithPrefix"<UIInputSetContainerView" inView:window];
        if (inputSetContainer) {
            UIView *inputSetHost = [self viewWithPrefix"<UIInputSetHostView" inView:inputSetContainer];
            if (inputSetHost) {
                UIView *kbinputbackdrop = [self viewWithPrefix"<_UIKBCompatInput" inView:inputSetHost];
                if (kbinputbackdrop) {
                    UIView *theKeyboard = [self viewWithPrefix"<UIKeyboard" inView:kbinputbackdrop];
                    return theKeyboard;
                }
            }
        }
    }

    return nil;
}

和用于查找右下角按钮的大小

- (CGRect ) findKeySizeForViewUIView *)view {
    if (view != nil) {
        UIView *uiKeyboardImpl = [self viewWithPrefix"<UIKeyboardImpl" inView:view];
        if (uiKeyboardImpl != nil) {
            UIView *uiKeyboardLayoutStar = [self viewWithPrefix"<UIKeyboardLayoutStar" inView:uiKeyboardImpl];
            if (uiKeyboardLayoutStar != nil) {
                UIView *uiKBKeyplaneView = [self viewWithPrefix"<UIKBKeyplaneView" inView:uiKeyboardLayoutStar];
                if (uiKBKeyplaneView != nil) {
                    for (view in [uiKBKeyplaneView subviews]) {
                        CGPoint pointOrigin =  view.layer.frame.origin;
                        if (pointOrigin.x <= 0 && pointOrigin.y == uiKBKeyplaneView.frame.size.height - view.frame.size.height && [[view description] hasPrefix:@"<UIKBKeyView"])
                            return  view.layer.frame;
                    }
                }
            }
        }

    }
    return CGRectZero;
}

关于iOS 数字键盘,能够打开文本键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46585218/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap