iPad 上的 UIModalPresentationFormSheet。键盘出现时如何调整UITextView的高度

Posted

技术标签:

【中文标题】iPad 上的 UIModalPresentationFormSheet。键盘出现时如何调整UITextView的高度【英文标题】:UIModalPresentationFormSheet on iPad. How to adjust UITextView height when keyboard appears 【发布时间】:2013-02-09 10:56:37 【问题描述】:

UITextView 是模态控制器视图的子视图。当键盘出现时,我需要降低 UITextView 的高度,以便 UITextView 的底部边框 y 坐标等于键盘的顶部 y 坐标。 我得到了键盘高度

CGRect frameBegin = [[notification.userInfo objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue] ;
CGRect frameEnd = [[notification.userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];

CGRect resultBegin = [self.view convertRect:frameBegin fromView:nil];
CGRect resultEnd = [self.view convertRect:frameEnd fromView:nil];

CGFloat kbdHeight = resultBegin.origin.y  - resultEnd.origin.y;

问题是当键盘出现时这个模态视图会跳起来。这种情况下如何计算键盘的上边框坐标?

【问题讨论】:

【参考方案1】:

你可以这样做:

1. Register for keyboard notifications:

[[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(myTextViewHeightAdjustMethod:)
                                             name:UIKeyboardWillShowNotification
                                           object:nil];

[[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(myTextViewHeightAdjustMethod:)
                                             name:UIKeyboardDidShowNotification
                                           object:nil];

2. Calculate intersection and adjust textView height with the bottom constraint

    - (void)myTextViewHeightAdjustMethod:(NSNotification *)notification
    
        NSDictionary *userInfo = [notification userInfo];
        CGRect keyboardFinalFrame = [[userInfo emf_ObjectOrNilForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];

        CGPoint keyboardOriginInView = [self.view convertPoint:keyboardFinalFrame.origin fromView:nil];

             CGFloat intersectionY = CGRectGetMaxY(self.view.frame) - keyboardOriginInView.y;

             if (intersectionY >= 0)
             
                 self.textViewBottomConstraint.constant = intersectionY + originalTextViewBottomConstraint;

                 [self.textView setNeedsLayout];
    

记得取消注册通知。

【讨论】:

自从我创建问题以来发生了很多事情。无论如何感谢您的回答。【参考方案2】:

如果您不需要自己编写代码,我建议您使用https://github.com/hackiftekhar/IQKeyboardManager

它工作得很好(对我来说,到目前为止),你需要做的就是导入它并在 AppDelegate 中添加这一行代码:

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool 

    //Magic one-liner
    IQKeyboardManager.sharedManager().enable = true

    return true

【讨论】:

以上是关于iPad 上的 UIModalPresentationFormSheet。键盘出现时如何调整UITextView的高度的主要内容,如果未能解决你的问题,请参考以下文章

即使 iPad 处于纵向模式,如何强制 iPad 上的电视处于横向模式

iPad 上的 MPMoviePlayerController 问题

怎么取消ipad上的home键

iOS (iPad) 上的 iframe 内容裁剪问题

iPad 上的 CSS 灵活框布局

iPad上的UIPopoverPresentationController [重复]