티스토리 뷰
현재 커서의 앞과 뒤의 텍스트를 나누는 방법을 알고 싶었다.
그러기 위해서는 현재 커서의 위치를 가져오는게 선행되어야 했다.
let textRange = textView.selectedTextRange
print("\(textRange)") // <_UITextKitTextRange: 0x1c443c600> (5, 0)B
위 코드는 커서 위치를 가져오는 코드이다.
그럼 위치를 이용해서 해당 위치의 전과 후의 텍스트를 가져오는 로직을 구현하면 된다.
let textString = textView.text!
let textRange = textView.selectedTextRange!
let offset = textView.offset(from: textView.beginningOfDocument, to: textRange.start)
// 커서 앞에 위치한 텍스트
let beforeString = textString.substring(to: textString.index(textString.startIndex, offsetBy: offset))
// 커서 뒤에 위치한 텍스트
let afterString = textString.substring(from: textString.index(textString.startIndex, offsetBy: offset))
아래는 텍스트의 끝에 커서를 위치하는 코드이다.
자신이 원하는 곳에 커서를 위치하고 싶을 때 사용하면 될 것 같다.
let position = textView.endOfDocument
textView.selectedTextRange = textView.textRange(from:position, to:position)
'Swift' 카테고리의 다른 글
navigationBar 하단 border 핸들링. (0) | 2018.04.06 |
---|---|
guard문 알아보기. (0) | 2018.04.06 |
UITextView - attributed text center alignment (0) | 2018.04.03 |
keyboard height 구하는 방법 (0) | 2018.04.03 |
App Store Icon 에러!! (0) | 2018.03.29 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- NIB
- HLS
- CollectionView
- carousel
- UIBarButtonItem
- RECORDING
- permission error
- UIButton
- UIControl
- TDD
- customAlertView
- testing
- pagingView
- Coordinator
- Design Pattern
- Realm
- Swift
- ssh
- AVKit
- http live streaming
- IOS
- database
- m3u8
- Cleancode
- Video
- xib
- BaseViewController
- Closure
- AssociatedObject
- AVFoundation
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함