일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 애니메이션
- MVVM
- 클린 코드
- swift documentation
- tableView
- 리펙터링
- ribs
- Protocol
- Refactoring
- SWIFT
- ios
- 리펙토링
- swiftUI
- 리팩토링
- map
- UITextView
- collectionview
- Observable
- Human interface guide
- 스위프트
- clean architecture
- RxCocoa
- rxswift
- uiscrollview
- uitableview
- Xcode
- Clean Code
- combine
- HIG
- UICollectionView
- Today
- Total
목록타입 캐스팅 (3)
김종권의 iOS 앱 개발 알아가기
Type casting 일반적인 표현 String -> Double 가장 일반적인 방법 Double에 문자열을 집어넣는 방법 Double("1") 또는 extension String에 넣는 방법 extension String { var asDouble: Double? { Double(self) } } "1".asDouble Type casting 표현식 표현식을 정의해놓는 방법 let stringToDouble = Double.init as (String) -> Double? 동작 1) 인수가 (String)으로 삽입 2) 인수가 Double.init에 들어감 - Double(인수)형태로 초기화 3) 그 값을 리턴 print(stringToDouble("a")) // Optiona(nil) print(s..
Type Casting instance의 유형을 확인하거나 해당 instance를 자체 클래스 계층 구조에서 superclass또는 subclass로 처리하는 방법 연산자는 두가지: is와 as Type 확인 is연산자 사용: 좌측엔 instance, 우측엔 type class MediaItem { var name: String init(name: String) { self.name = name } } class Movie: MediaItem { var director: String init(name: String, director: String) { self.director = director super.init(name: name) } } class Song: MediaItem { var artist..
업 캐스팅 객체를 상위 클래스(super class)로 변경 하위 클래스(sub class)는 항상 상위 클래스의 부분집합 이므로 언제나 성공: as로 접근 let myScrollView = CustomScrollView() myScrollView as UIView 다운 캐스팅 객체를 하위 클래스로 변경 실패할 수 있으므로 optional 형태: as!, as? 로 접근 let myScrollView = CustomScrollView() myScrollView as? CustomScrollView() check(scrollView: myScrollView) func check(scrollView: UIScrollView) { print(scrollView as? CustomScrollView) // 다운..