ios - 当键盘存在时,如何使 UITextField 向上移动 - 开始编辑?

使用 iOS SDK:

我有一个带有 UITextFieldUIView 可以调出键盘。我需要它能够:

  1. 在打开键盘后允许滚动 UIScrollView 的内容以查看其他文本字段

  2. 自动“跳跃”(通过向上滚动)或缩短

我知道我需要一个 UIScrollView。我尝试将 UIView 的类更改为 UIScrollView,但仍然无法向上或向下滚动文本框。

我需要 UIViewUIScrollView 吗?一个会进入另一个吗?

为了自动滚动到事件文本字段需要实现什么?

理想情况下,尽可能多的组件设置将在 Interface Builder 中完成。我只想为需要的代码编写代码。

注意:我正在使用的 UIView(或 UIScrollView)是由标签栏(UITabBar)调出的,它需要正常运行。


我只是在键盘出现时添加滚动条。尽管它不是必需的,但我觉得它提供了更好的界面,例如,用户可以滚动和更改文本框。

当键盘上下移动时,我可以更改 UIScrollView 的帧大小。我只是在使用:

-(void)textFieldDidBeginEditing:(UITextField *)textField {
    //Keyboard becomes visible
    scrollView.frame = CGRectMake(scrollView.frame.origin.x,
                                  scrollView.frame.origin.y,
    scrollView.frame.size.width,
    scrollView.frame.size.height - 215 + 50);   // Resize
}

-(void)textFieldDidEndEditing:(UITextField *)textField {
    // Keyboard will hide
    scrollView.frame = CGRectMake(scrollView.frame.origin.x,
                                  scrollView.frame.origin.y,
                                  scrollView.frame.size.width,
                                  scrollView.frame.size.height + 215 - 50); // Resize
}

但是,这不会自动“向上移动”或将可见区域中的下部文本字段居中,这是我真正想要的。

最佳答案

  1. 如果您现在拥有的内容不适合 iPhone 屏幕,您将只需要一个 ScrollView。 (如果您添加 ScrollView 作为组件的 super View 只是为了使 TextField 在键盘出现时向上滚动,则不需要。)

  2. 防止 TextField 被键盘覆盖的标准方法是在显示键盘时向上/向下移动 View 。

这里是一些示例代码:

#define kOFFSET_FOR_KEYBOARD 80.0

-(void)keyboardWillShow {
    // Animate the current view out of the way
    if (self.view.frame.origin.y >= 0)
    {
        [self setViewMovedUp:YES];
    }
    else if (self.view.frame.origin.y < 0)
    {
        [self setViewMovedUp:NO];
    }
}

-(void)keyboardWillHide {
    if (self.view.frame.origin.y >= 0)
    {
        [self setViewMovedUp:YES];
    }
    else if (self.view.frame.origin.y < 0)
    {
        [self setViewMovedUp:NO];
    }
}

-(void)textFieldDidBeginEditing:(UITextField *)sender
{
    if ([sender isEqual:mailTf])
    {
        //move the main view, so that the keyboard does not hide it.
        if  (self.view.frame.origin.y >= 0)
        {
            [self setViewMovedUp:YES];
        }
    }
}

//method to move the view up/down whenever the keyboard is shown/dismissed
-(void)setViewMovedUp:(BOOL)movedUp
{
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.3]; // if you want to slide up the view

    CGRect rect = self.view.frame;
    if (movedUp)
    {
        // 1. move the view's origin up so that the text field that will be hidden come above the keyboard 
        // 2. increase the size of the view so that the area behind the keyboard is covered up.
        rect.origin.y -= kOFFSET_FOR_KEYBOARD;
        rect.size.height += kOFFSET_FOR_KEYBOARD;
    }
    else
    {
        // revert back to the normal state.
        rect.origin.y += kOFFSET_FOR_KEYBOARD;
        rect.size.height -= kOFFSET_FOR_KEYBOARD;
    }
    self.view.frame = rect;

    [UIView commitAnimations];
}


- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    // register for keyboard notifications
    [[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(keyboardWillShow)
                                             name:UIKeyboardWillShowNotification
                                           object:nil];

    [[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(keyboardWillHide)
                                             name:UIKeyboardWillHideNotification
                                           object:nil];
}

- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
    // unregister for keyboard notifications while not visible.
    [[NSNotificationCenter defaultCenter] removeObserver:self
                                             name:UIKeyboardWillShowNotification
                                           object:nil];

    [[NSNotificationCenter defaultCenter] removeObserver:self
                                             name:UIKeyboardWillHideNotification
                                           object:nil];
}

https://stackoverflow.com/questions/1126726/

相关文章:

ios - 如何在 Objective-C 中检查一个字符串是否包含另一个字符串?

objective-c - Objective-C 中用于连接 NSString 的快捷方式

ios - 如何将 NSString 值转换为 NSData?

objective-c - 如何为项目中的单个文件禁用 ARC?

objective-c - 如何从 Swift 调用 Objective-C 代码?

ios - 在 View Controller 之间传递数据

ios - 如何对包含自定义对象的 NSMutableArray 进行排序?

ios - 如何为约束更改设置动画?

objective-c - Objective-C 中的 typedef 枚举是什么?

ios - Objective-C 中的常量