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
- Xcode
- Human interface guide
- tableView
- 리펙터링
- map
- swiftUI
- HIG
- collectionview
- swift documentation
- uitableview
- 애니메이션
- Observable
- RxCocoa
- Clean Code
- UITextView
- rxswift
- MVVM
- ribs
- UICollectionView
- uiscrollview
- ios
- 리팩토링
- clean architecture
- 클린 코드
- Refactoring
- 스위프트
- SWIFT
- Protocol
- combine
- 리펙토링
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] textField델리게이트 함수 shouldChangeCharactersIn, range, NSRange 본문
iOS 기본 (swift)
[iOS - swift] textField델리게이트 함수 shouldChangeCharactersIn, range, NSRange
jake-kim 2020. 11. 8. 22:56textField: 수정 전의 textField객체
range: 수정 될 범위 정보
- range.location: 현재 커서 위치
- range.length: 삭제된 문자 갯수
EX)
- "1234"에서 "12"로 변경 -> range: {2, 2} "현재 커서 위치는 2, 문자열에서 수정된 길이는 2개"
- "123456"에서 "123"으로 변경 -> range: {3,3}
- "123"에서 "1234"로 변경 -> range: {3, 0}
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
// 현재: "123"
// 입력: "1234"
let newLength = textField.text.count + string.count - range.length // 4
print(textField.text) // Optional("123")
print(range.location, range.length) // {3, 0}
print(string) // 4
// 현재: "1234"
// 입력: "123"
print(textField.text) // Optional("1234")
print(range.location, range.length) // {3, 1}
print(string) // ""
return true
}
'iOS 기본 (swift)' 카테고리의 다른 글
[iOS - swift] init(frame:), required init?(coder aDecoder: NSCoder), prepareForInterfaceBuilder(), awakeFromNib() 초기화의 정체 (0) | 2020.11.16 |
---|---|
[iOS - swift] 버튼의 상태 selected vs highlighted (0) | 2020.11.16 |
[iOS - swift] PresentedViewController vs PresentingViewController (0) | 2020.11.08 |
[iOS - swift] Singleton사용 방법 (0) | 2020.11.07 |
[iOS - swift] for - in - where 문법 (0) | 2020.11.07 |
Comments