在 iOS 7 中编辑时 UITextView 光标无法正确定位.为什么?

UITextView cursor not positioning properly when editing in iOS 7. Why?(在 iOS 7 中编辑时 UITextView 光标无法正确定位.为什么?)
本文介绍了在 iOS 7 中编辑时 UITextView 光标无法正确定位.为什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

上面那个黄色框是一个可编辑的 UITextView,当前正在编辑(是第一响应者).但你可能分不清吧?因为没有游标.但是有……就是黄色textView左下角的那个小蓝点.它略低于 textViews 底部边框.因此,如果我继续换行或按回车键,文本将自然向上移动.但是光标永远不会是水平"的,或者是在 UITextView 的底部边框上方.它总是勉强从底部伸出,在边界下方几个点.

That yellow box above is an editable UITextView that is currently being edited (is first responder). But you probably couldn't tell right? Because there is no cursor. But there is... It's that small blue dot in the bottom left of the yellow textView. It's slightly below the textViews bottom border. So if I keep going to a new line, or pressing enter, the text will move up as it naturally should. But the cursor is never "level", or right above the UITextView's bottom border. It's always just barely poking out of the bottom, a couple points below the border.

为什么?这在 iOS 6 中不是问题.有什么方法可以解决这个问题?

Why? This wasn't a problem in iOS 6. Any way to fix this?

推荐答案

这个bug在iOS 7.0,你可以通过修改textView的委托方法来解决.

this bug is in iOS 7.0 you can solve this by modifying textView delegate method.

试试下面的代码

- (void)textViewDidChange:(UITextView *)textView {
    CGRect line = [textView caretRectForPosition:
        textView.selectedTextRange.start];
    CGFloat overflow = line.origin.y + line.size.height
        - ( textView.contentOffset.y + textView.bounds.size.height
        - textView.contentInset.bottom - textView.contentInset.top );
    if ( overflow > 0 ) {
    // We are at the bottom of the visible text and introduced a line feed, scroll down (iOS 7 does not do it)
    // Scroll caret to visible area
        CGPoint offset = textView.contentOffset;
        offset.y += overflow + 7; // leave 7 pixels margin
    // Cannot animate with setContentOffset:animated: or caret will not appear
        [UIView animateWithDuration:.2 animations:^{
            [textView setContentOffset:offset];
        }];
    }
}

你的问题会解决的.

这篇关于在 iOS 7 中编辑时 UITextView 光标无法正确定位.为什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)
Resume game cocos2d(恢复游戏 cocos2d)
Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)
[ios.cocos2d+box2d]how to disable auto-rotation?([ios.cocos2d+box2d]如何禁用自动旋转?)
Storing and reading files from Documents directory iOS 5(从 Documents 目录存储和读取文件 iOS 5)
How can I implement a virtual joystick for a cocos2d game outside the cocos2d environment?(如何在 cocos2d 环境之外实现 cocos2d 游戏的虚拟摇杆?)