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
- Refactoring
- swiftUI
- 리팩토링
- MVVM
- 클린 코드
- RxCocoa
- SWIFT
- UITextView
- collectionview
- swift documentation
- ribs
- rxswift
- 스위프트
- 리펙터링
- uitableview
- Human interface guide
- ios
- clean architecture
- 리펙토링
- Protocol
- tableView
- map
- UICollectionView
- Observable
- 애니메이션
- HIG
- Clean Code
- Xcode
- uiscrollview
- combine
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift 공식 문서] 19. Nested Type (중첩 타입) 본문
Nested Types
- 유형의 정의 내에서 enum, class, struct를 중첩하여, 순수한 타입으로 한번더 타입으로 정의하는 것
- 예시
- Suit: 네 개의 일반적인 게임 카드 설명
- Rank: 대부분의 카드는 한가지의 값을 갖지만 에이스 카드에는 두 개의 값이 있다는 것을 표현
struct BlackjackCard {
// nested Suit enumeration
enum Suit: Character {
case spades = "♠", hearts = "♡", diamonds = "♢", clubs = "♣"
}
// nested Rank enumeration
enum Rank: Int {
case two = 2, three, four, five, six, seven, eight, nine, ten
case jack, queen, king, ace
struct Values {
let first: Int, second: Int?
}
var values: Values {
switch self {
case .ace:
return Values(first: 1, second: 11)
case .jack, .queen, .king:
return Values(first: 10, second: nil)
default:
return Values(first: self.rawValue, second: nil)
}
}
}
// BlackjackCard properties and methods
let rank: Rank, suit: Suit
var description: String {
var output = "suit is \(suit.rawValue),"
output += " value is \(rank.values.first)"
if let second = rank.values.second {
output += " or \(second)"
}
return output
}
}
- 중첩 유형 참조: 해당 이름에 중첩된 타이브이 이름을 접두사로 붙여서 참조
let heartsSymbol = BlackjackCard.Suit.hearts.rawValue
// heartsSymbol is "♡"
* 출처
https://docs.swift.org/swift-book/LanguageGuide/NestedTypes.html
'swift 공식 문서' 카테고리의 다른 글
[iOS - swift 공식 문서] 21. Protocols (프로토콜) (0) | 2021.07.20 |
---|---|
[iOS - swift 공식 문서] 20. Extensions (확장) (0) | 2021.07.19 |
[iOS - swift 공식 문서] 18. Type Casting (타입 캐스팅, 다운캐스팅, 업캐스팅) (0) | 2021.07.15 |
[iOS - swift 공식 문서] 17. Concurrency (동시성), async, await (0) | 2021.07.14 |
[iOS - swift 공식 문서] 16. Error Handling (오류 처리) (0) | 2021.07.13 |
Comments