Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Observable
- combine
- Clean Code
- 리펙토링
- HIG
- MVVM
- ios
- swift documentation
- RxCocoa
- 애니메이션
- Human interface guide
- 리팩토링
- SWIFT
- tableView
- swiftUI
- uiscrollview
- Refactoring
- 리펙터링
- Xcode
- UITextView
- Protocol
- rxswift
- collectionview
- 클린 코드
- UICollectionView
- uitableview
- clean architecture
- map
- 스위프트
- ribs
Archives
- Today
- Total
목록textViewDidChangeSelection (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] iOS 17 textViewDidChangeSelection 버그(UITextView, cursor, 커서 위치, 선택 영역)
iOS 17 textViewDidChangeSelection 버그 iOS17 이전까지는 델리게이트에서 selection range가 변경되면 textView.selectedRange값이 실시간으로 변경해주었지만, iOS17 부터는 사용자가 드래그를 놓았을때만 호출됨 심지어 textView.selectedRange값을 계속 print해보아도 cursor를 놓았을때만 변경되는 버그가 존재 extension ViewController: UITextViewDelegate { func textViewDidChangeSelection(_ textView: UITextView) { print("range>", textView.selectedRange) } } 실시간으로 cursor 위치 파악하는 방법 selectio..
iOS 응용 (swift)
2023. 11. 14. 01:34