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

ios - 在自动布局中隐藏不断增长的 UItextview 的键盘。如何克服这一点?

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

我需要在我的应用中实现聊天功能。其中我有一个如图所示的 InputView。

图片 1

enter image description here

图片 2

enter image description here .

InputView 是带有左右按钮和 TextView 的 蓝色彩色 View

  1. 单击文本字段时,此输入 View 应向上滚动并且键盘应出现。这个 TextView 是一个不断增长的文本字段,其中包含文本数量。
  2. 但是当我在文本字段中输入多行时。 InputView 和 Textfield 都在增长,但它在键盘下方略微隐藏,如下所示如何克服它???

图 3

enter image description here

**

And I used this code

**.

-(void)viewWillAppearBOOL)animated{
    [super viewWillAppear:animated];
    [self registerForKeyboardNotifications];
}

- (void)viewWillDisappearBOOL)animated {
    [super viewWillDisappear:animated];
    [self deregisterFromKeyboardNotifications];
}

- (void)registerForKeyboardNotifications
{
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selectorselector(keyboardWasShown
                                                 name:UIKeyboardDidShowNotification object:nil];

    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selectorselector(keyboardWillBeHidden
                                                 name:UIKeyboardWillHideNotification object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selectorselector(keyboardWillBeHidden
                                                 name:UIKeyboardDidHideNotification object:nil];


}
- (void)deregisterFromKeyboardNotifications {
    [[NSNotificationCenter defaultCenter] removeObserver:self
                                                    name:UIKeyboardDidHideNotification
                                                  object:nil];
    [[NSNotificationCenter defaultCenter] removeObserver:self
                                                    name:UIKeyboardWillHideNotification
                                                  object:nil];
}
- (void)keyboardWasShownNSNotification*)aNotification {

    NSDictionary* info = [aNotification userInfo];
    CGSize kbSize = [[info objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue].size;

    UIEdgeInsets contentInsets = UIEdgeInsetsMake(0.0, 0.0, kbSize.height, 0.0);
    self.scrollView.contentInset = contentInsets;
    self.scrollView.scrollIndicatorInsets = contentInsets;

    // If active text field is hidden by keyboard, scroll it so it's visible
    // Your app might not need or want this behavior.
    CGRect aRect = self.view.frame;
    aRect.size.height -= kbSize.height;
    if (!CGRectContainsPoint(aRect, self.inputView.frame.origin) ) {
        [self.scrollView scrollRectToVisible:self.inputView.frame animated:YES];
    }

    [self.view layoutIfNeeded];
}

- (void)keyboardWillBeHiddenNSNotification*)aNotification
{
    UIEdgeInsets contentInsets = UIEdgeInsetsZero;
    self.scrollView.contentInset = contentInsets;
    self.scrollView.scrollIndicatorInsets = contentInsets;
    [self.view layoutIfNeeded];
}

- (void)textViewDidChangeUITextView *)textView {
    CGSize sizeThatShouldFitTheContent = [textView sizeThatFits:textView.frame.size];
    //chatView_heightConstraint is the inputview height
    self.chatView_heightConstraint.constant = MIN(sizeThatShouldFitTheContent.height + 8, 87);

    CGRect _f = self.textView.frame;
    _f.size.height = MIN( self.textView.contentSize.height, 79.0);
    self.textView.frame = _f;
}



Best Answer-推荐答案


最后我解决了这个问题...在 ScrollView 之后添加了一个 View ,这个技巧奏效了!!! ScrollView --> UIView --> TableView 和 InputView

关于ios - 在自动布局中隐藏不断增长的 UItextview 的键盘。如何克服这一点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34738198/

回复

使用道具 举报

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

本版积分规则

关注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