gpt4 book ai didi

iphone - 如何关闭 UIKeyboardType 数字键盘?

转载 作者:行者123 更新时间:2023-12-03 19:32:00 25 4
gpt4 key购买 nike

我正在尝试隐藏数字键盘,但我不想实现按钮。

当用户点击文本字段外部时,是否可以关闭数字键盘?

最佳答案

这是您阅读它并说“这很简单,您只是......”的问题之一。然后你就去做,让它变得 super 复杂。然后意识到它不必那么复杂。

我想出的答案是使用一个不可见的UIView,它从不交互,但作用于其他 View ,并且可能不妨碍其他人你可能会想。

有关关闭 UIKeyboardTypeNumberPad 键盘的问题的典型答案是添加一个带有按钮的栏作为 inputAccessoryView 以关闭键盘。如果不需要栏和按钮,通常您只需监听背景上的触摸事件即可,但是这个问题是关于桌面 View 的,这使得这变得更加困难。

但是这个 inputAccessoryView 功能仍然很棒。它允许您定义在显示键盘时显示的 UIViewUIView 子类。更重要的是,当键盘由于文本字段而显示时,inputAccessoryView 成为第一响应者。

我可以继续提示,但首先这里有一些轻量级的代码,它在测试中实际上表现得很好。

NJ_KeyboardDismisser.h的内容是:

#import <UIKit/UIKit.h>

// For some reason neither inputView or inputAccessoryView are IBOutlets, so we cheat.
@interface UITextField (WhyDoIHaveToDoThisApple)
@property (readwrite, retain) IBOutlet UIView *inputAccessoryView;
@end

@interface NJ_KeyboardDismisser : UIView
@property (nonatomic, weak) IBOutlet UIView *mainView;
-(id)initWithMainView:(UIView *)view; // convienience method for code
@end

NJ_KeyboardDismisser.m的内容是:

#import "NJ_KeyboardDismisser.h"
@implementation NJ_KeyboardDismisser {
UITapGestureRecognizer *_tapGR;
}
@synthesize mainView = _mainView;
-(void)setMainView:(UIView *)view{
if (_tapGR) [_tapGR.view removeGestureRecognizer:_tapGR];
_mainView = view;
_tapGR = [[UITapGestureRecognizer alloc] initWithTarget:_mainView action:@selector(endEditing:)];
}
-(id)initWithMainView:(UIView *)view{
if ((self = [super initWithFrame:CGRectMake(0, 0, 0, 0)])){
self.mainView = view;
}
return self;
}
-(void)didMoveToWindow{ // When the accessory view presents this delegate method will be called
[super didMoveToWindow];
if (self.window){ // If there is a window one of the textfields, for which this view is inputAccessoryView, is first responder.
[self.mainView addGestureRecognizer:_tapGR];
}
else { // If there is no window the textfield is no longer first responder
[self.mainView removeGestureRecognizer:_tapGR];
}
}
@end

您可能认识 endEditing: 方法,正如 Cosique 提到的,它是一个 UIView 扩展方法,要求 View 嵌套文本字段退出。听起来很方便吗?这是。通过在 TableView 上调用它,它包含的文本字段将放弃第一响应者。由于此技术适用于所有 UIView,因此无需人为地将此 socket 限制为仅 UITableView,因此 socket 只是 UIView *mainView

这里最后一个移动部分是UITapGestureRecognizer。我们不想全职添加这个识别器,因为担心会破坏桌面 View 的工作。因此,我们利用 UIView 的委托(delegate)方法 didMoveToWindow。我们实际上并没有对窗口做任何事情,我们只是检查一下我们是否在其中;如果我们是,那么我们的一个文本字段就是第一响应者,如果不是,那么它就不是。我们相应地添加和删除手势识别器。

好吧,很简单,但是如何使用它呢?那么,如果在代码中实例化,您可以在 tableView:cellForRowAtIndexPath::

中这样做
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
UITextField *field = [[UITextField alloc] initWithFrame:CGRectMake(20, 6, 100, 31)];
[cell.contentView addSubview:field];
field.keyboardType = UIKeyboardTypeNumberPad;
field.inputAccessoryView = [[NJ_KeyboardDismisser alloc] initWithMainView:self.view];
}

如果您在 Storyboard中使用静态单元,那么技术是不同的(显然)。首先拖出​​一个通用的 NSObject 并将其放置在 View 下方的深灰色 strip 中(其他对象(例如 View Controller )所在的位置)。然后将此新对象的类更改为 NJ_KeyboardDismisser。然后将“Keyboard Dismisser”的 mainView 属性连接到该 View (通常是 TableView )。然后将场景中任意文本字段的 inputAccessoryView 属性连接到“Keyboard Dismisser”。

Image of the Keyboard Dismisser object listed among the other view controller objects.

尝试一下!表格 View 正常运行。 Apple 的点击识别器足够智能,可以忽略桌面上的滑动,因此您可以滚动。它还会忽略文本字段中的触摸,因此您可以编辑和选择其他文本字段。但是点击文本字段外部,键盘就会消失。

注意:此类的使用不限于表格 View 。如果您想在常规 View 上使用它,只需将 mainView 属性设置为与 View Controller 的 View 相同即可。

关于iphone - 如何关闭 UIKeyboardType 数字键盘?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9246509/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com