Develop
2018.10.31 09:06

[ios] Swift 4 Singleton inheritance

조회 수 1597 추천 수 0 댓글 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"


?

  1. [펌] 게임 엔진 만든거 공개합니다.

    Date2015.02.21 CategoryDevelop Byhooni Views2359
    Read More
  2. [php][laravel] 라라벨 프로젝트 생성 및 구조

    Date2017.12.15 CategoryDevelop Byhooni Views2389
    Read More
  3. [js] jQuery, Javascript 모바일(스마트폰) 판단하는 방법

    Date2015.04.26 CategoryDevelop Byhooni Views2454
    Read More
  4. [php] Laravel Route에서 PC/Mobile 분기

    Date2018.01.24 CategoryDevelop Byhooni Views2479
    Read More
  5. [php] Laravel 4. twitter bootstrap 적용하기

    Date2018.04.05 CategoryDevelop Byhooni Views2550
    Read More
  6. [js] Javascript로 만든 포트리스 (2010)

    Date2017.03.03 CategoryDevelop Byhooni Views2566
    Read More
  7. [js] show/hide 이벤트 감시 (Observing show/hide event)

    Date2021.02.03 CategoryDevelop Byhooni Views2591
    Read More
  8. [php][laravel] 라라벨 개발환경 세팅하기 (Mac, Window)

    Date2017.12.15 CategoryDevelop Byhooni Views2593
    Read More
  9. [ios] TextField 특정 문자만 사용하도록 하기

    Date2014.06.30 CategoryDevelop Byhooni Views2684
    Read More
  10. 알고리즘 성능 분석 기준

    Date2014.06.24 CategoryDevelop Byhooni Views2792
    Read More
  11. [ios] XCode에서 Provisioning Profile 여러개 중복될 때

    Date2014.06.26 CategoryDevelop Byhooni Views2825
    Read More
  12. [c#] 툴바 현재 욜심히 만들고 있는거.. 백업용.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views2852
    Read More
  13. 알고리즘 성능분석

    Date2014.06.24 CategoryDevelop Byhooni Views2972
    Read More
  14. [ios] Objective-C 프로퍼티의 ATOMIC / NONATOMIC 속성

    Date2014.03.17 CategoryDevelop Byhooni Views3002
    Read More
  15. [js] Array.splice() 설명

    Date2014.04.24 CategoryDevelop Byhooni Views3007
    Read More
  16. [ios] iOS 사운드 관련 프레임워크

    Date2014.04.18 CategoryDevelop Byhooni Views3019
    Read More
Board Pagination Prev 1 ... 9 10 11 12 13 ... 53 Next
/ 53