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
- Human interface guide
- UITextView
- Xcode
- 애니메이션
- uitableview
- combine
- Clean Code
- SWIFT
- Refactoring
- 리펙토링
- swift documentation
- 스위프트
- 리펙터링
- map
- collectionview
- ribs
- HIG
- ios
- rxswift
- swiftUI
- 클린 코드
- 리팩토링
- Observable
- UICollectionView
- uiscrollview
- clean architecture
- Protocol
- MVVM
- tableView
- RxCocoa
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] NFC, NFD (한글 자소 분리 해결) 본문
NFD
Mac OS에서 한글을 저장하는 방식 : NFD(Normalization Form Canonical Decomposition)
"한글.txt"저장 -> "ㅎㅏㄴㄱㅡㄹ.txt"로 풀어서 유니코드로 저장
ex) 보통 mac에서 window로 파일을 전송할 때, window에서 파일을 열어보면 한글 자소가 분리되어 있는걸 발견
NFC
Windows OS에서 한글을 저장하는 방식: NFC(Normalization Form Canonical Composition)
"한글.txt"저장 -> 그대로 병합하여 유니코드로 저장
swift에서 UILabel에 문구를 넣을 때 NFD로 표현되는 경우 - NFC로 변환
let sample = "한글"
lblTitle.text = sample.precomposedStringWithCanonicalMapping // NFD -> NFC
'iOS 응용 (swift)' 카테고리의 다른 글
[iOS - swift] iOS13버전 이상에서 SceneDelegate삭제하기 (0) | 2020.10.17 |
---|---|
[iOS - swift] nib 개념, 앱의 sandbox (0) | 2020.10.01 |
[iOS - swift] codable을 이용한 json 파싱 (0) | 2020.08.30 |
[iOS - swift] TextField를 클릭시 버튼 올라오게 하기 (RxKeyboard, layoutSubviews) (2) | 2020.08.17 |
[iOS - Swift] GCD(Grand Central Dispatch), DispatchQueue (0) | 2020.05.20 |
Comments