[ios] Swift 4 Singleton inheritance
Swift 4 에서 싱글톤 객체를 사용하는 방법은 여러 가지가 있겠지만 이건 내가 자주 사용하는 두 가지..
# 변수 형태로 사용하기
ex) Singleton.shared.name = "Hello"
클래스를 상속 받아서 확장하기 어려움 ㅠㅠ
import UIKit
class Singleton
{
static let shared: Singleton = {
var instance = Singleton()
instance.name = "default name"
return instance
}()
var name: String = String()
}
class SingletonSubclass: Singleton {
static var sharedSub: SingletonSubclass = {
var instance = SingletonSubclass()
instance.name = "default name"
return instance
}()
var title: String = String()
}
Singleton.shared.name // ""
SingletonSubclass.shared.name // ""
SingletonSubclass.shared.name = "haha"
SingletonSubclass.sharedSub.title = "hello"
Singleton.shared.name // ""
//Singleton.shared.title // (error)
SingletonSubclass.shared.name // "haha"
SingletonSubclass.sharedSub.title // "hello"
# 함수 형태로 사용하기
ex) Singleton.sharedInstance().name = "Hello"
클래스를 상속 받아 확장하기 편함
Sometimes you need to subclass your singleton…
import UIKit
class Singleton
{
class func sharedInstance() -> Singleton {
struct inner { static let instance = Singleton() }
inner.instance
return inner.instance
}
var name: String = String()
}
class SingletonSubclass: Singleton
{
override class func sharedInstance() -> SingletonSubclass {
struct inner { static let instance = SingletonSubclass() }
return inner.instance
}
var title: String = String()
}
Singleton.sharedInstance().name // ""
SingletonSubclass.sharedInstance().name // ""
SingletonSubclass.sharedInstance().name = "haha"
SingletonSubclass.sharedInstance().title = "hello"
Singleton.sharedInstance().name // ""
//Singleton.sharedInstance().title // (error)
SingletonSubclass.sharedInstance().name // "haha"
SingletonSubclass.sharedInstance().title // "hello"
No. | Category | Subject | Author | Date | Views |
---|---|---|---|---|---|
123 | Develop | [ios] Objective-C 프로퍼티의 ATOMIC / NONATOMIC 속성 | hooni | 2014.03.17 | 3992 |
122 | Develop | 알고리즘 성능 분석 기준 | hooni | 2014.06.24 | 3979 |
121 | Develop | [php] mysql_ 과 mysqli_ 의 차이 | hooni | 2017.12.01 | 3912 |
120 | Develop | [ios] Objective-C Types & Storage Capacity | hooni | 2015.07.22 | 3910 |
119 | Develop | [ios] TextField 특정 문자만 사용하도록 하기 | hooni | 2014.06.30 | 3885 |
118 | Develop | [ios] Xcode cannot run using the selected device | hooni | 2014.08.14 | 3861 |
117 | Develop | [coding] Find all anagrams in a string | hooni | 2017.06.27 | 3844 |
116 | Develop | [c] 셀프 넘버(Self Number) 구하기 1 | hooni | 2016.09.09 | 3820 |
115 | Develop |
[ios] iOS앱의 Xcode 빌드 과정
![]() |
hooni | 2015.01.03 | 3806 |
114 | Develop | [js] jQuery, Javascript 모바일(스마트폰) 판단하는 방법 | hooni | 2015.04.26 | 3787 |
113 | Develop | [펌] 게임 엔진 만든거 공개합니다. | hooni | 2015.02.21 | 3782 |
112 | Develop | [python] 파라미터 앞에 *, ** 의 의미? (*args, **kwargs) | hooni | 2019.11.22 | 3781 |