作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 UITextView
其中包含文本和图像。我还有一个 CGPoint
包含用户在 UITextFied
中添加的图像坐标的数组.每当在 UITextView
中发短信时更改(添加或删除),我得到光标的位置是 CGPoint
对象。
现在我想遍历我的 CGPoint
数组来查找光标位置之后有多少图像,无论是在同一行还是下面的行。我该怎么做?
非常感谢任何帮助。
当然:
var cursor = message.caretRectForPosition(message.selectedTextRange?.end).origin;
for i in 0...emoji1.count-1 {
if ((cursor.x > emoji_pt[i].x) && (cursor.y <= emoji_pt[i].y)) {
continue;
}
else {
//the emoji is after the cursor.
// Return the index and process all images after that index
}
}
最佳答案
处理Y位置
Bool onPreviousLine = (emoji_pt[i].y < cursor.y)
要处理 X 位置(lineHeight
是一个常量,具体取决于您的情况和图像的大小,您可能可以使用一些较低的常量值(例如 1.0
))。
Bool onTheSameLine = abs(Double(emoji_pt[i].y - cursor.y)) < Double(lineHeight / 2)
Bool beforeX = (emoji_pt[i].x < cursor.x)
在一起
if onPreviousLine || (onTheSameLine && beforeX) {
continue
}
关于ios - 如何在 Swift 中比较两点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28406906/
我是一名优秀的程序员,十分优秀!