Develop
2018.10.31 09:06

[ios] Swift 4 Singleton inheritance

Views 1588 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

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"


?

List of Articles
No. Category Subject Author Date Views
681 Develop [펌] 게임 엔진 만든거 공개합니다. hooni 2015.02.21 2350
680 Develop [php][laravel] 라라벨 프로젝트 생성 및 구조 file hooni 2017.12.15 2378
679 Develop [js] jQuery, Javascript 모바일(스마트폰) 판단하는 방법 hooni 2015.04.26 2449
678 Develop [php] Laravel Route에서 PC/Mobile 분기 hooni 2018.01.24 2464
677 Develop [js] Javascript로 만든 포트리스 (2010) 5 file hooni 2017.03.03 2501
676 Develop [php] Laravel 4. twitter bootstrap 적용하기 hooni 2018.04.05 2539
675 Develop [php][laravel] 라라벨 개발환경 세팅하기 (Mac, Window) 2 file hooni 2017.12.15 2574
674 Develop [js] show/hide 이벤트 감시 (Observing show/hide event) hooni 2021.02.03 2577
673 Develop [ios] TextField 특정 문자만 사용하도록 하기 hooni 2014.06.30 2673
672 Develop 알고리즘 성능 분석 기준 hooni 2014.06.24 2783
671 Develop [ios] XCode에서 Provisioning Profile 여러개 중복될 때 hooni 2014.06.26 2814
670 Develop [c#] 툴바 현재 욜심히 만들고 있는거.. 백업용.. ㅋㅋ secret hooni 2013.04.23 2852
669 Develop 알고리즘 성능분석 file hooni 2014.06.24 2963
668 Develop [ios] Objective-C 프로퍼티의 ATOMIC / NONATOMIC 속성 hooni 2014.03.17 3000
667 Develop [js] Array.splice() 설명 hooni 2014.04.24 3001
666 Develop [ios] iOS 사운드 관련 프레임워크 hooni 2014.04.18 3013
Board Pagination Prev 1 ... 9 10 11 12 13 ... 53 Next
/ 53