[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"
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
123 | Develop |
[ios] Objective-C에서 형식이 있는 문자열(Format Strings)에 사용할 수 있는 토큰들(Tokens)
![]() |
hooni | 2013.04.23 | 20043 |
122 | Develop | [js] 파이어폭스(Firefox;F/F)에서 outerHTML 작동하도록 만든 메소드 | hooni | 2013.04.23 | 20152 |
121 | Develop | [ios] iphone SetDeviceOrientation 화면 강제 회전 | hooni | 2013.11.20 | 20236 |
120 | Develop |
[c] AES 알고리즘 (암호화/복호화)
![]() |
hooni | 2003.04.23 | 20839 |
119 | Develop | [js]모바일 웹에서 orientationchange | hooni | 2013.04.23 | 20852 |
118 | Develop | [php] XE 에서 php 구문 사용하기 (XE 템플릿에서) | hooni | 2013.10.31 | 21128 |
117 | Develop |
[c] UTF-8을 EUC-KR로 변환.. (iconv)
![]() |
hooni | 2013.04.23 | 21279 |
116 | Develop |
[ios] libxml/tree.h file not found
![]() |
hooni | 2013.08.08 | 21280 |
115 | Develop |
[python] 애니팡, 캔디팡 매크로
![]() |
hooni | 2013.09.06 | 21426 |
114 | Develop | [php] substr() 한글 자를 때 깨짐 방지 | hooni | 2014.01.09 | 21530 |
113 | Develop |
[opengl] 컴퓨터 그래픽스 강의 자료(수업자료)
![]() |
hooni | 2003.04.23 | 22052 |
112 | Develop | git 브런치 배우기 (링크) | hooni | 2013.07.09 | 22079 |