我有10行的UITextView,现在我试图在第5行的末尾插入换行符。怎么可能?
答案 0 :(得分:3)
components(separatedBy: .newlines)
range(of:)
upperBound
索引处。答案 1 :(得分:0)
这是:
let textview = UITextView()
textview.frame = CGRect(x: 100, y: 100, width: 200, height: 200)
textview.text = "djhgiruior seitii iuuiuy yyt yt tr dtre d grf hth yghj jh u hu khku yi hhhhh\nuiytuftftyftyfytf"
textview.backgroundColor = .green
self.view.addSubview(textview)
它将在'\n'
之后给出新行。所以用这个