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
- ribs
- tableView
- 스위프트
- uiscrollview
- Refactoring
- ios
- 리펙토링
- swiftUI
- rxswift
- MVVM
- swift documentation
- collectionview
- 애니메이션
- 리팩토링
- 리펙터링
- Protocol
- SWIFT
- map
- Observable
- Clean Code
- Xcode
- combine
- UICollectionView
- RxCocoa
- uitableview
- HIG
- Human interface guide
- UITextView
- clean architecture
- 클린 코드
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] class var vs static var 본문
class var 프로퍼티 vs static var 프로퍼티
- class var 프로퍼티는 computed property
- class var와 static var모두 객체로 접근하는 것이 아닌 class 이름 or struct 이름으로 접근
- static var는 override가 안되지만 clsas var는 override가능
class var를 사용 예
- class var 선언
//
// Extension.swift
// AlertExample
//
// Created by 김종권 on 2020/11/29.
//
import Foundation
import UIKit
public extension NSObject {
var className: String {
return String(describing: type(of: self))
}
class var className: String {
return String(describing: self)
}
}
- class var 사용
//
// ViewController.swift
// AlertExample
//
// Created by 김종권 on 2020/11/28.
//
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
self.className // var
DialogVC.className // class var
}
}
'iOS 기본 (swift)' 카테고리의 다른 글
[iOS - swift] POP(Protocol Oriented Programming) 프로토콜 지향 프로그래밍 (0) | 2020.12.23 |
---|---|
[iOS - swift] Dispatch Group (0) | 2020.12.17 |
[iOS - swift] run타임에서 디버깅 방법, 콘솔창에서 print (break point, po) (0) | 2020.11.26 |
[iOS - swift] Designated init, Convenience init, 초기화의 핵심, 초기화 상속 (0) | 2020.11.26 |
[iOS - swift] intrinsic content size (0) | 2020.11.21 |
Comments