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 |
Tags
- rxswift
- 스위프트
- 애니메이션
- tableView
- Xcode
- map
- Clean Code
- UITextView
- swift documentation
- collectionview
- SWIFT
- uiscrollview
- UICollectionView
- ios
- 리펙토링
- Human interface guide
- 리팩토링
- MVVM
- uitableview
- 리펙터링
- ribs
- combine
- swiftUI
- Protocol
- Observable
- Refactoring
- RxCocoa
- 클린 코드
- clean architecture
- HIG
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] CustomStringConvertible 개념 (#description, #print 커스텀, #String(describing)) 본문
iOS 응용 (swift)
[iOS - swift] CustomStringConvertible 개념 (#description, #print 커스텀, #String(describing))
jake-kim 2024. 1. 23. 01:07CustomStringConvertible 개념
- 해당 프로토콜을 준수하는 인스턴스에 설명을 붙일 수 있는데 여기에 사용되는 것
- 프로토콜을 보면 description 하나만 프로퍼티만 소유
public protocol CustomStringConvertible {
var description: String { get }
}
- print를 사용할때 내부적으로 이 description을 읽어서 print하는 것
enum A {
case a
case b
}
print(A.a) // "a"
- 만약 A에다가 CustomStringConvertible을 준수하면, description에 정의한 값으로 반환됨
enum A: CustomStringConvertible {
case a
case b
var description: String {
var str = ""
switch self {
case .a:
str = "a"
case .b:
str = "b"
}
return "값은 바로? " + str
}
}
print(A.a) "값은 바로? a"
String(describing) 개념
- 아래처럼 String의 초기화 매개변수 describing으로 인스턴스를 받아서 문자열로 만들 수 있는데, 이것을 사용하면 CustomStringConvertible의 description의 값을 반환하는 것
let a = A.a
let description = String(describing: a)
print(description) // "값은 바로? a"
- print()에 문자열을 넣으면 내부적으로 String(describing:)을 사용하기 때문에 String(describing:)을 따로 만들지 않고 바로 print()를 사용하는 것
* 참고
https://developer.apple.com/documentation/swift/customstringconvertible
'iOS 응용 (swift)' 카테고리의 다른 글
[iOS - swift] device 분기 방법, 시뮬레이터 분기문 (targetEnvironment, os, arch, swift) (0) | 2024.01.27 |
---|---|
[iOS - swift] nested protocol 개념 (#Swift 5.10) (0) | 2024.01.24 |
[iOS - swift] ipa 파일 reverse engineering 시작하기 (#ghidra, NSA, National Security Agency) (3) | 2024.01.17 |
[iOS - swift] Optional의 map, flatMap 함수 (0) | 2024.01.16 |
[iOS - swift] UIKit framework 저장 위치, Headers, Modules, UIKit.tbd 개념 (1) | 2024.01.15 |
Comments