[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"
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
831 | Develop |
[js] 2048 예쁘게 만들고 있는거.. ㅋㄷ
![]() |
hooni | 2015.01.30 | 0 |
830 | Develop |
[ios] APNS 샘플 코드..
![]() |
hooni | 2013.06.27 | 0 |
829 | Develop |
[js] 주소표시줄 URL 읽어오기 (변경까지)
![]() |
hooni | 2014.01.21 | 1 |
828 | Develop |
[php] XE 스킨에서 특정 도메인 리다이렉션
![]() |
hooni | 2015.01.28 | 1491 |
827 | Develop | [ios] 앱의 로컬 js 파일에서 해당 프로젝트의 이미지 불러오기 | hooni | 2015.02.10 | 1513 |
826 | Develop |
[php] XE에서 도메인 별로 광고 다르게 적용하기
![]() |
hooni | 2015.01.28 | 1523 |
825 | Develop | [js] 좋은 강연자료 & UI 자료 | hooni | 2014.10.06 | 1547 |
824 | Develop |
[ppt] iOS 플라랩#04(2015.06.19) 발표 자료
![]() |
hooni | 2015.06.04 | 1549 |
823 | Develop | [ios] 비동기 블럭 코드 예제 | hooni | 2014.11.21 | 1591 |
822 | Develop | [ios] 앱에서 설정화면 호출하기 | hooni | 2015.04.07 | 1742 |
821 | Develop |
[js] e.stopPropagation() VS e.preventDefault ()
![]() |
hooni | 2015.04.14 | 1745 |
820 | Develop | [ios] URL 랜딩 속도(OpenURL 10초 정지되는) 이슈 | hooni | 2015.02.09 | 1756 |