【发布时间】:2019-05-04 07:36:04
【问题描述】:
我用来获取 UITextfield 中光标位置的标准方法似乎不适用于某些表情符号。以下代码在插入两个字符(首先是表情符号,然后是字母字符)后查询文本字段以获取光标位置。当表情符号插入到 textField 中时,函数为光标位置返回值 2,而不是预期的结果 1。关于我做错了什么或如何纠正这个问题的任何想法。谢谢
这是来自 xcode 游乐场的代码:
class MyViewController : UIViewController {
override func loadView() {
//setup view
let view = UIView()
view.backgroundColor = .white
let textField = UITextField()
textField.frame = CGRect(x: 150, y: 200, width: 200, height: 20)
textField.textColor = .black
view.addSubview(textField)
self.view = view
//check cursor position
var str = "????"
textField.insertText(str)
print("cursor position after '\(str)' insertion is \(getCursorPosition(textField))")
textField.text = ""
str = "A"
textField.insertText(str)
print("cursor position after '\(str)' insertion is \(getCursorPosition(textField))")
}
func getCursorPosition(_ textField: UITextField) -> Int {
if let selectedRange = textField.selectedTextRange {
let cursorPosition = textField.offset(from: textField.beginningOfDocument, to: selectedRange.end)
return cursorPosition
}
return -1
}
}
代码返回以下输出:
cursor position after '????' insertion is 2
cursor position after 'A' insertion is 1
我正在尝试使用光标位置将文本字符串分成两部分——出现在光标之前的文本和出现在光标之后的文本。为此,我使用光标位置作为我使用 map 函数创建的字符数组的索引,如下所示。光标位置导致带有表情符号的数组索引不正确
var textBeforeCursor = String()
var textAfterCursor = String()
let array = textField.text!.map { String($0) }
let cursorPosition = getCursorPosition(textField)
for index in 0..<cursorPosition {
textBeforeCursor += array[index]
}
【问题讨论】:
-
一些表情符号字母由两个 Unicode 字符组成。有些由三个 unicode 字符组成。也有许多由四个 unicode 字符组成的表情符号。
-
是的,但是当我尝试使用光标位置将文本分成两部分时遇到了问题。我将编辑问题以使事情更清楚。
标签: swift string emoji cursor-position