菜鸟教程小白 发表于 2022-12-13 07:24:35

iphone - 键盘、方向和 UITextView


                                            <p><p>我有一个覆盖整个屏幕的 UITextview。为了补偿键盘,我添加了这个处理程序:</p>

<pre><code>- (void)keyboardWasShown:(NSNotification*)aNotification{
    // Resize for the stupid keyboard
    NSDictionary* info = ;
    CGSize kbSize = [ CGRectValue].size;

    CGRect rect = _textView.frame;
    rect.size.height -= kbSize.height;
    _textView.frame = rect;

    CGPoint p = ;
    ;
    , 0)];
}
</code></pre>

<p>这在纵向模式下很有效,但在横向模式下 View 完全消失了。有没有更优雅的解决方案来处理这个问题?我读过苹果<a href="http://developer.apple.com/library/ios/#documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/KeyboardManagement/KeyboardManagement.html" rel="noreferrer noopener nofollow">keyboard management</a>文档,但它对方向问题没有太多帮助。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>所以,我不幸的解决方案是这样的</p>

<pre><code>UIInterfaceOrientation o = ;
if(o == UIInterfaceOrientationPortrait || o == UIInterfaceOrientationPortraitUpsideDown){
    rect.size.height -= kbSize.height;
}else if(o == UIInterfaceOrientationLandscapeLeft || o == UIInterfaceOrientationLandscapeRight){
    rect.size.height -= kbSize.width;
}
</code></pre>

<p>我想这是解决这个问题的唯一方法。不过,我仍然喜欢一个优雅的解决方案:)</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 键盘、方向和 UITextView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/5808092/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/5808092/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 键盘、方向和 UITextView