«dispatch» 태그된 질문

29
Swift에서 dispatch_once 싱글 톤 모델 사용
Swift에서 사용하기 위해 적절한 싱글 톤 모델을 개발하려고합니다. 지금까지 스레드가 아닌 안전 모델을 다음과 같이 작동시킬 수있었습니다. class var sharedInstance: TPScopeManager { get { struct Static { static var instance: TPScopeManager? = nil } if !Static.instance { Static.instance = TPScopeManager() } return Static.instance! } } 정적 구조체에서 싱글 톤 인스턴스를 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.