iPad 上 UITextView 中的光标移动

发布于 2024-09-26 18:51:39 字数 117 浏览 6 评论 0原文

如何在iPad中实现像按物理键盘左键一样向左移动?

我可以获取当前光标位置,但我需要找到一种方法来计算当前字符的宽度并从当前的 x 位置中减去该宽度。

有没有办法计算当前字符的宽度?谢谢!

How to implement the move leftward like pressing the left button on the physical keyboard in iPad?

I can get the current cursor position, but I need to figure out a way to calculate the width of the current character and subtract that from the current x position.

Is there anyway to calculate the width of the current character? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烏雲後面有陽光 2024-10-03 18:51:39

如果你想在 UITextView 中移动光标,我认为你不需要计算当前字符的宽度。
UITextView 有一个名为 selectedRange 的属性,它给出了 UITextView 中光标的当前位置和选定范围。
您只需将新的范围值分配给 UITextView 的 selectedRange 属性即可。
例如,

textView.selectedRange = NSMakeRange(textView.selectedRange.location - 1, 0); 

I don't think you need to calculate the width of the current character if you want to move a cursor in UITextView.
UITextView has a property called selectedRange that gives the current position and selected range of the cursor in UITextView.
You just have to assign a new range value into your UITextView's selectedRange property.
For example,

textView.selectedRange = NSMakeRange(textView.selectedRange.location - 1, 0); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文