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
- 리펙터링
- swiftUI
- Protocol
- UICollectionView
- map
- 리펙토링
- 리팩토링
- rxswift
- SWIFT
- ios
- swift documentation
- Xcode
- UITextView
- collectionview
- MVVM
- RxCocoa
- 스위프트
- 애니메이션
- HIG
- tableView
- combine
- uiscrollview
- uitableview
- Refactoring
- Observable
- Clean Code
- Human interface guide
- ribs
- 클린 코드
- clean architecture
Archives
- Today
- Total
목록특수문자 코드 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] HTML 특수문자 코드를 일반적인 문자열로 변경하는 방법
HTML 특수문자 코드 HTML코드를 표현문자로 변경 HTML 특수문자 코드 변경 후 1 '가나다' 2 "가나다" Swift에서 변경 방법 String extension으로 추가 extension String { init?(htmlEncodedString: String) { guard let data = htmlEncodedString.data(using: .utf8) else { return nil } let options: [NSAttributedString.DocumentReadingOptionKey: Any] = [ .documentType: NSAttributedString.DocumentType.html, .characterEncoding: String.Encoding.utf8.rawValue..
iOS 응용 (swift)
2021. 5. 26. 01:20