这篇文章我曾在另一个博客发表过,3年过去了,之前一直没有写博客的习惯,一拖就是三年,是时候写下一篇了。以下是之前的搬运,并在排版上有些调整。
其实吧。我觉得这个功能应该系统自动实现的。那既然现在没有这个功能,我们手动来实现吧。
我之前遇到这个问题的时候网上找过很多方案,但皆不尽如人意。可能因为我有多个text field,按return会自动聚焦到下一个。情况就复杂了。
后经过我反复调试,找到了一个比较稳定的方案。
注:我调试的时候发现排版有问题,模拟器的话试下不同尺寸的iphone。为方便阅读,每一步的新加代码都是红色会用注释标明。其他黑色的代码作为上下文位置的参考。如果还是觉得�看起来很吃力的话,还请留言吧,我给优化一下。
1.新建一个Single View Application,不用加其他的文件。
2.先给界面加上必要的控件,UITextField X 3 , UIButton X 1。并关联到.h文件中。
3.简单实现一下click的动作,就显示一个UIAlertView吧。
//-----------新代码-----------
- (IBAction)click:(id)sender {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"Job Done!"delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
}
//---------------------------
4.实现一下键盘的return事件。 首先加上必要的成员变量和声明继承的protocol,用一个NSArray来遍历UITextField。
//.h
//-----------新代码-----------
@interface ViewController : UIViewController {
NSArray *_inputFocuses;
BOOL _pressedReturn;
}
//---------------------------
@property (weak, nonatomic) IBOutlet UITextField *textField1;
@property (weak, nonatomic) IBOutlet UITextField *textField2;
@property (weak, nonatomic) IBOutlet UITextField *textField3;
@property (weak, nonatomic) IBOutlet UIButton *button;
- (IBAction)click:(id)sender;
@end
//.m
- (void)viewDidLoad {
[super viewDidLoad];// Do any additional setup after loading the view, typically from a nib.
//-----------新代码-----------
_textField1.delegate = self;
_textField2.delegate = self;
_textField3.delegate = self;
_inputFocuses = [NSArray arrayWithObjects:_textField1, _textField2, _textField3, nil];
//---------------------------
}
//-----------新代码-----------
#pragma mark - UITextFieldDelegate
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
int index = [_inputFocuses indexOfObject:textField];
if (index == [_inputFocuses count] - 1) {//如果是最后一个text field时按return 就点击按钮
[self click:_button];
}
else {//如果没有到最后一个text field就将焦点转向下一个text field
UITextField *nextTextField = [_inputFocuses objectAtIndex:(index + 1)];
[nextTextField becomeFirstResponder];
}
UITextField *currentTextField = [_inputFocuses objectAtIndex:index];
[currentTextField resignFirstResponder];
return NO;
}
//---------------------------
Test Run:点击任意text field,按下键盘的return,焦点会一个个下移,虽然我们现在还看不到,不过,相信我,是这样的。。。最后按到了按钮,弹出了alert,这个不用质疑。
5.再添加一个点击非键盘区域就让键盘消失的功能吧。首先要补上一个回调方法的实现在此之前先声明一些新的要用到的变量。
//.h
@interface ViewController : UIViewController {
//-----------新代码-----------
BOOL _isKeyboardShowing;
UITextField *_activeTextField;
BOOL _addedObserver;
//---------------------------
NSArray *_inputFocuses;
BOOL _pressedReturn;
}
//.m
#pragma mark - UITextFieldDelegate
//-----------新代码-----------
// 点击文本框会先触发这个代理
-(void)textFieldDidBeginEditing:(UITextField *)textField {
_pressedReturn = NO;//按下return和直接点击text field都会触发这个方法,所以用一个标示的变量来区分,后面会发挥作用的。
_activeTextField = textField;
}
//---------------------------
然后重写这个方法
//-----------新代码-----------
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [touches anyObject];
CGPoint location = [touch locationInView:self.view];
NSLog(@"location : (%.2f,%.2f)", location.x, location.y);
if (_isKeyboardShowing && _activeTextField) {
[_activeTextField resignFirstResponder];
}
}
//---------------------------
这样,编辑的时候就能记下当前的text field到_activeTextField了。
然后标记一下键盘正在显示。
//.m
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
//-----------新代码-----------
if (!_addedObserver) {
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(KeyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(KeyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
_addedObserver = YES;
}
//---------------------------
_textField1.delegate = self;
_textField2.delegate = self;
_textField3.delegate = self;
_inputFocuses = [NSArray arrayWithObjects:_textField1, _textField2, _textField3, nil];
}
//-----------新代码-----------
#pragma mark - KeyboardNotification
// 触发文本框代理以后触发这个消息
- (void)KeyboardWillShow:(NSNotification *)notification {
_isKeyboardShowing = YES;
}
- (void)KeyboardWillHide:(NSNotification *)notification {
//这个方法等后面再实现,先占个坑。因为和现在要做的步骤无关。
}
//---------------------------
到这里为止,我们把准备工作做的很充分了,接下来就要玩一些更有趣的操作了。
我已经把这篇的代码新开一个工程测试过了,基本上复制黏贴就能一步步实现。如果发现有问题的话,还请留个言。
那接下去的就放到下一篇吧,接下来就是获取键盘高度,调整view的位置了。