Contents

Develop
2018.10.31 09:06

[ios] Swift 4 Singleton inheritance

조회 수 6194 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

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
번호 분류 제목 글쓴이 날짜 조회 수
819 Develop [ios] iOS 8 개발자가 우선 알아야 할 3가지 file hooni 2014.10.02 1797
818 Develop [ios] Touch ID 적용 샘플 코드 (예제) file hooni 2015.02.23 1843
817 Develop [ios] WWDC 2015 샘플 소스 코드 통합파일 hooni 2015.07.20 1845
816 Develop [ios] 문자열로 함수 실행하기 (eval 함수처럼) hooni 2015.02.10 1850
815 Develop [ios] NSNotificationCenter 초간단 사용 예~ ㅋㄷ hooni 2015.06.26 1865
814 Develop [ios] 새로 만들고 있는 DateMemo file hooni 2016.07.12 1905
813 Develop [ios] UIWebView에서 로컬에 있는 html 파일 불러오기 hooni 2015.02.10 2011
812 Develop [ios] SBCampanion App 초안 file hooni 2015.09.16 2023
811 Develop [c] 이진 탐색 두 가지 코드 (재귀/반복) file hooni 2015.06.26 2035
810 Develop [ios] NSData to NSString (NSString to NSData) hooni 2015.07.21 2036
809 Develop [android] AlertDialog 메시지 창 띄우기 hooni 2015.07.09 2063
808 Develop GPL, AGPL, MPL,.. 한눈에 보는 오픈소스SW 라이선스 file hooni 2014.10.14 2072
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 71 Next
/ 71